Skip to content

Commit

Permalink
uint96 -> uint256
Browse files Browse the repository at this point in the history
  • Loading branch information
parodime committed Oct 1, 2024
1 parent d35ecbc commit 66c3611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts-rfq/contracts/FastBridgeV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ contract FastBridgeV2 is Admin, IFastBridgeV2, IFastBridgeV2Errors {
/// @notice Relay details on destination chain
mapping(bytes32 => BridgeRelay) public bridgeRelayDetails;
/// @notice Unique bridge nonces tracked per originSender
mapping(address => uint96) public senderNonces;
mapping(address => uint256) public senderNonces;

// @dev the block the contract was deployed at
uint256 public immutable deployBlock;
Expand Down

0 comments on commit 66c3611

Please sign in to comment.