Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix-merkle-implementatio' into f…
Browse files Browse the repository at this point in the history
…ix-merkle-implementatio
  • Loading branch information
rach-id committed Nov 7, 2023
2 parents f7f7d5b + 2e6acb3 commit 85bc59d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Blobstream.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Signature {
/// (see ./DataRootTuple.sol), with each tuple representing a single data root
/// in a Celestia block header. Relayed tuples are in the same order as the
/// block headers.
/// @dev DO NOT REMOVE INHERITENCE OF THE FOLLOWING CONTRACTS: Initializable, UUPSUpgradeable and
/// @dev DO NOT REMOVE INHERITANCE OF THE FOLLOWING CONTRACTS: Initializable, UUPSUpgradeable and
/// OwnableUpgradeable! They're essential for upgradability.
contract Blobstream is IDAOracle, Initializable, UUPSUpgradeable, OwnableUpgradeable {
// Don't change the order of state for working upgrades AND BE AWARE OF
Expand Down Expand Up @@ -292,7 +292,7 @@ contract Blobstream is IDAOracle, Initializable, UUPSUpgradeable, OwnableUpgrade
///
/// The data root root is the Merkle root of the binary Merkle tree
/// (https://github.com/celestiaorg/celestia-specs/blob/master/src/specs/data_structures.md#binary-merkle-tree)
/// where each leaf in an ABI-encoded `DataRootTuple`. Each relayed data
/// where each leaf is in an ABI-encoded `DataRootTuple`. Each relayed data
/// root tuple will 1:1 mirror data roots as they are included in headers
/// on Celestia, _in order of inclusion_.
///
Expand Down
Loading

0 comments on commit 85bc59d

Please sign in to comment.