Skip to content

Commit 87e5285

Browse files
committed
fix: address comments
1 parent b4d1985 commit 87e5285

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/precompiles/ArbNativeTokenManager.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ pragma solidity >=0.4.21 <0.9.0;
1212
*/
1313
interface ArbNativeTokenManager {
1414
/**
15-
* @notice Emitted when some amount of the native gas token is minted by a NativeTokenOwner.
15+
* @notice Emitted when some amount of the native gas token is minted to a NativeTokenOwner.
1616
*/
17-
event NativeTokenMinted(address indexed minter, address indexed to, uint256 amount);
17+
event NativeTokenMinted(address indexed to, uint256 amount);
1818

1919
/**
20-
* @notice Emitted when some amount of the native gas token is burned by a NativeTokenOwner.
20+
* @notice Emitted when some amount of the native gas token is burned from a NativeTokenOwner.
2121
*/
22-
event NativeTokenBurned(address indexed burner, address indexed to, uint256 amount);
22+
event NativeTokenBurned(address indexed from, uint256 amount);
2323

2424
/**
2525
* @notice In case the caller is authorized,

0 commit comments

Comments
 (0)