From 2abc054713e23769b56a49c7031a8a67c3900f47 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Tue, 9 Aug 2022 13:29:34 -0400 Subject: [PATCH] Fix: constructor does not require public visibility --- contracts/Rln.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Rln.sol b/contracts/Rln.sol index 3246b8a..c6494a4 100644 --- a/contracts/Rln.sol +++ b/contracts/Rln.sol @@ -19,7 +19,7 @@ contract RLN { uint256 membershipDeposit, uint256 depth, address _poseidonHasher - ) public { + ) { MEMBERSHIP_DEPOSIT = membershipDeposit; DEPTH = depth; SET_SIZE = 1 << depth;