Commit 25e907f 1 parent 4a53309 commit 25e907f Copy full SHA for 25e907f
File tree 1 file changed +2
-2
lines changed
packages/solidity-contracts/contracts/fuelchain/FuelMessagePortal
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ import {FuelMessagePortalV3} from "./v3/FuelMessagePortalV3.sol";
6
6
/// @notice to be used by external tools, like the block producer
7
7
/// @dev marked abstract to track all relevant current and future functions as development evolves
8
8
abstract contract IFuelMessagePortal is FuelMessagePortalV3 {
9
- event TransactionSent ( bytes serializedTx , uint64 );
9
+ event Transaction ( uint64 max_gas , bytes canonically_serialized_tx );
10
10
11
- function sendTransaction (bytes calldata serializedTx , uint64 gas ) external payable virtual ;
11
+ function sendTransaction (uint64 gas , bytes calldata serializedTx ) external payable virtual ;
12
12
13
13
function getLastSeenBlock () external virtual returns (uint256 );
14
14
You can’t perform that action at this time.
0 commit comments