Skip to content

chore: remove redundant words #290

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/challengeV2/libraries/EdgeChallengeManagerLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ library EdgeChallengeManagerLib {
/// proof parsing logic and return the common parts for later use.
/// @param store The store containing current edges
/// @param args The edge creation args
/// @param ard Data about the assertion data is is also need to when creating a Block edge type
/// @param ard Data about the assertion data is also need to when creating a Block edge type
/// The created edge must be shown to be consistent with the states in the assertion chain
/// Empty for non block edge type edges
/// @param oneStepProofEntry The one step proof contract that defines how machine states are hashed
Expand Down Expand Up @@ -512,7 +512,7 @@ library EdgeChallengeManagerLib {
// in createdAtBlock number
return firstRivalCreatedAtBlock - edgeCreatedAtBlock;
} else {
// if this was created at the same time as, or after the the first rival
// if this was created at the same time as, or after the first rival
// then we return 0
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion src/challengeV2/libraries/MerkleTreeAccumulatorLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ library MerkleTreeAccumulatorLib {
/// @param proof The proof is the minimum set of complete subtree hashes that can be appended to
/// the accumulator-tree in order to form the post accumulator
/// The first entry in the proof will be appended at the level of the first non-zero entry in the pre-expansion.
/// The second entry will then be appended to the the first non zero entry in the resulting expansion and so on, until
/// The second entry will then be appended to the first non zero entry in the resulting expansion and so on, until
/// appending a sub tree will create a tree of greater that the post size. Then, starting at the highest level,
/// the next entry in the proof is attempted to be appended to the expansion, but the result is only accepted if has a size
/// less than or equal the post-size. This continues until all proof entries have been used up.
Expand Down