Skip to content

Commit 69d4039

Browse files
authored
Add nonce to FTI interface (#155)
Closes #154
1 parent 682e7cc commit 69d4039

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/four-lizards-tell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@fuel-bridge/solidity-contracts': patch
3+
---
4+
5+
Add nonce to FTI interface

packages/solidity-contracts/contracts/fuelchain/FuelMessagePortal/IFuelMessagePortal.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {FuelMessagePortalV3} from "./v3/FuelMessagePortalV3.sol";
66
/// @notice to be used by external tools, like the block producer
77
/// @dev marked abstract to track all relevant current and future functions as development evolves
88
abstract contract IFuelMessagePortal is FuelMessagePortalV3 {
9-
event Transaction(uint64 max_gas, bytes canonically_serialized_tx);
9+
event Transaction(uint256 indexed nonce, uint64 max_gas, bytes canonically_serialized_tx);
1010

1111
function sendTransaction(uint64 gas, bytes calldata serializedTx) external payable virtual;
1212

0 commit comments

Comments
 (0)