Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Changed the Nonce to be uint256 #35

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/fuelchain/FuelMessagePortal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract FuelMessagePortal is
event MessageSent(
bytes32 indexed sender,
bytes32 indexed recipient,
uint64 indexed nonce,
uint256 indexed nonce,
uint64 amount,
bytes data
);
Expand Down Expand Up @@ -90,7 +90,7 @@ contract FuelMessagePortal is
FuelChainConsensus private _fuelChainConsensus;

/// @notice Nonce for the next message to be sent
uint64 private _outgoingMessageNonce;
uint256 private _outgoingMessageNonce;

/// @notice Mapping of message hash to boolean success value
mapping(bytes32 => bool) private _incomingMessageSuccessful;
Expand Down