Fix: constructor does not require public visibility

This commit is contained in:
Richard Ramos 2022-08-09 13:29:34 -04:00
parent 71d1558ddf
commit 2abc054713
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ contract RLN {
uint256 membershipDeposit,
uint256 depth,
address _poseidonHasher
) public {
) {
MEMBERSHIP_DEPOSIT = membershipDeposit;
DEPTH = depth;
SET_SIZE = 1 << depth;