Skip to content

Commit 589062a

Browse files
committed
Make the amounts for mint and burn uint256
1 parent 7a5bacb commit 589062a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/precompiles/ArbOwner.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ interface ArbOwner {
211211
* @notice Mints some amount of the native gas token for this chain to the
212212
* given address.
213213
*/
214-
function mintNativeToken(address to, uint64 amount) external;
214+
function mintNativeToken(address to, uint256 amount) external;
215215

216216
/**
217217
* @notice Burns some amount of the native gas token for this chain from the
218218
* given address.
219219
*/
220-
function burnNativeToken(address from, uint64 amount) external;
220+
function burnNativeToken(address from, uint256 amount) external;
221221

222222
/**
223223
* @notice Sets the increased calldata price feature on or off (EIP-7623)

0 commit comments

Comments
 (0)