Skip to content

Commit

Permalink
Make pool ID immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Aug 22, 2023
1 parent 4d9ea1d commit 02e4591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ethereum/src/v1/CasimirPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract CasimirPool is ICasimirPool, Ownable, ReentrancyGuard {
/*********/

/** Pool ID */
uint32 private id;
uint32 private immutable id;
/** Validator public key */
bytes private publicKey;
/** Operator IDs */
Expand Down

0 comments on commit 02e4591

Please sign in to comment.