Skip to content

Commit

Permalink
fix: immutable to constant
Browse files Browse the repository at this point in the history
  • Loading branch information
junkim012 committed Jul 6, 2024
1 parent 3da1aad commit d43b441
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/vault/Vault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,9 @@ contract Vault is ERC4626, Multicall, AccessControlDefaultAdminRules, Reentrancy

uint8 public immutable DECIMALS_OFFSET;

bytes32 public immutable ION_POOL_SUPPLY_CAP_SLOT =
bytes32 public constant ION_POOL_SUPPLY_CAP_SLOT =
0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e09;
bytes32 public immutable ION_POOL_LIQUIDITY_SLOT =
0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e08;
bytes32 public constant ION_POOL_LIQUIDITY_SLOT = 0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e08;

IERC20 public immutable BASE_ASSET;

Expand Down

0 comments on commit d43b441

Please sign in to comment.