Skip to content

Commit

Permalink
fix: remove immutable property for decimal in zrc20 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis authored Aug 16, 2024
1 parent 7e43787 commit 100d765
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion v2/contracts/zevm/ZRC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ contract ZRC20 is IZRC20Metadata, ZRC20Errors, ZRC20Events {
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private immutable _decimals;
uint8 private _decimals;

/// @notice Gateway contract address.
/// @dev This variable is added at last position to maintain storage layout with ZRC20.sol v1
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/gatewayevmzevm.t.sol/gatewayevmzevmtest.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/pkg/gatewayzevm.t.sol/gatewayzevminboundtest.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/pkg/gatewayzevm.t.sol/gatewayzevmoutboundtest.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/pkg/zrc20.sol/zrc20.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/pkg/zrc20.t.sol/zrc20test.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/types/factories/ZRC20.sol/ZRC20__factory.ts

Large diffs are not rendered by default.

0 comments on commit 100d765

Please sign in to comment.