Skip to content

Commit

Permalink
revert merkle change
Browse files Browse the repository at this point in the history
  • Loading branch information
zkbenny committed Apr 2, 2024
1 parent ffaaecc commit c377e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/zksync/l1-contracts/zksync/libraries/Merkle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ library Merkle {
}

/// @dev Keccak hash of the concatenation of two 32-byte words
function _efficientHash(bytes32 _lhs, bytes32 _rhs) public pure returns (bytes32 result) {
function _efficientHash(bytes32 _lhs, bytes32 _rhs) internal pure returns (bytes32 result) {
assembly {
mstore(0x00, _lhs)
mstore(0x20, _rhs)
Expand Down

0 comments on commit c377e47

Please sign in to comment.