Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
excaliborr committed Aug 13, 2024
1 parent de9f103 commit 8150979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils/SigUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ contract SigUtils {
* @param _message The bridge message struct to hash
* @return _hash The hash of the bridge message struct
*/
// solhint-disable
/* solhint-disable */
function getTypedBridgeMessageHash(IOpUSDCBridgeAdapter.BridgeMessage memory _message)
public
view
returns (bytes32 _hash)
{
_hash = keccak256(abi.encodePacked('\x19\x01', _DOMAIN_SEPARATOR, getBridgeMessageHash(_message)));
}
// solhint-enable
/* solhint-enable */

/**
* @notice Hashes the bridge message struct
Expand Down

0 comments on commit 8150979

Please sign in to comment.