Skip to content

Commit 54157a7

Browse files
committed
fix(c4-86-g07): emitting or returning storage values
Signed-off-by: Tomás Migone <[email protected]>
1 parent 3805ca9 commit 54157a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/l2/token/L2GraphToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ contract L2GraphToken is GraphTokenUpgradeable, IArbToken {
5959
function setGateway(address _gw) external onlyGovernor {
6060
require(_gw != address(0), "INVALID_GATEWAY");
6161
gateway = _gw;
62-
emit GatewaySet(gateway);
62+
emit GatewaySet(_gw);
6363
}
6464

6565
/**

0 commit comments

Comments
 (0)