Skip to content

Commit

Permalink
Merge pull request #5 from Uniswap/assert-signature-length
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes authored Dec 2, 2024
2 parents b99bc95 + 46f9944 commit b90bb7a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/HyperlaneArbiter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ contract HyperlaneArbiter is Router {
) external payable {
require(block.chainid == intent.chainId, "invalid chain");

require(allocatorSignature.length == 64 && sponsorSignature.length == 64, "invalid signature length");

// TODO: support Permit2 fills
address filler = msg.sender;
uint256 hyperlaneFee = msg.value;
Expand Down

0 comments on commit b90bb7a

Please sign in to comment.