Skip to content

Commit

Permalink
immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Oct 3, 2024
1 parent cc57caa commit 73379dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/hello/contracts/Echo.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {RevertContext} from "@zetachain/protocol-contracts/contracts/Revert.sol"
import "@zetachain/protocol-contracts/contracts/evm/GatewayEVM.sol";

contract Echo {
GatewayEVM public gateway;
GatewayEVM public immutable gateway;

event RevertEvent(string, RevertContext);
event HelloEvent(string, string);
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/contracts/Hello.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "@zetachain/protocol-contracts/contracts/zevm/interfaces/IGatewayZEVM.sol
import "@zetachain/protocol-contracts/contracts/zevm/GatewayZEVM.sol";

contract Hello is UniversalContract {
GatewayZEVM public gateway;
GatewayZEVM public immutable gateway;

event HelloEvent(string, string);
event RevertEvent(string, RevertContext);
Expand Down

0 comments on commit 73379dd

Please sign in to comment.