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 8150979 commit d86740b
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions test/utils/SigUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,13 @@ contract SigUtils {
* @param _message The bridge message struct to hash
* @return _hash The hash of the bridge message struct
*/
/* solhint-disable */
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)));
}
/* solhint-enable */
// forgefmt: disable-end

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

0 comments on commit d86740b

Please sign in to comment.