Skip to content

Commit

Permalink
immutable gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Nov 19, 2024
1 parent 84beed4 commit 4cfaa55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/nft/contracts/Connected.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ contract Connected is
GatewayEVM public immutable gateway;
uint256 private _nextTokenId;
address public counterparty;
uint256 public gasLimit;
uint256 public immutable gasLimit;

error InvalidAddress();
error Unauthorized();
Expand Down
2 changes: 1 addition & 1 deletion examples/nft/contracts/Universal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ contract Universal is
address public immutable uniswapRouter;
uint256 private _nextTokenId;
bool public isUniversal = true;
uint256 public gasLimit;
uint256 public immutable gasLimit;

error TransferFailed();
error Unauthorized();
Expand Down
2 changes: 1 addition & 1 deletion examples/token/contracts/Universal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract Universal is ERC20, Ownable2Step, UniversalContract, Events {
address public immutable uniswapRouter;
uint256 private _nextTokenId;
bool public isUniversal = true;
uint256 public gasLimit;
uint256 public immutable gasLimit;

error TransferFailed();
error Unauthorized();
Expand Down

0 comments on commit 4cfaa55

Please sign in to comment.