Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Dec 30, 2022
1 parent 4d2cee0 commit 52d35d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/thirdparty/LibMerkleTrie.sol
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ library LibMerkleTrie {
) private pure returns (uint256 _shared) {
uint256 i = 0;
while (_a.length > i && _b.length > i && _a[i] == _b[i]) {
i++;
++i;
}
return i;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/thirdparty/LibRLPWriter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ library LibRLPWriter {
uint256 lenLen;
uint256 i = 1;
while (_len / i != 0) {
lenLen++;
++lenLen;
i *= 256;
}

Expand Down

0 comments on commit 52d35d7

Please sign in to comment.