Skip to content

Commit

Permalink
fix: ci (#149)
Browse files Browse the repository at this point in the history
# 🤖 Linear

Closes OPT-XXX
  • Loading branch information
excaliborr authored Aug 13, 2024
1 parent 174be47 commit 8ed9c12
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/utils/SigUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ contract SigUtils {
* @param _message The bridge message struct to hash
* @return _hash The hash of the bridge message struct
*/
function getTypedBridgeMessageHash(IOpUSDCBridgeAdapter.BridgeMessage memory _message)
public
view
returns (bytes32 _hash)
{
// forgefmt: disable-start
function getTypedBridgeMessageHash(
IOpUSDCBridgeAdapter.BridgeMessage memory _message
) public view returns (bytes32 _hash) {
_hash = keccak256(abi.encodePacked('\x19\x01', _DOMAIN_SEPARATOR, getBridgeMessageHash(_message)));
}
// forgefmt: disable-end

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

0 comments on commit 8ed9c12

Please sign in to comment.