From bcca6d29f6ade92ef060a19005d4021ca24ca644 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Thu, 27 Jun 2024 10:37:31 +0200 Subject: [PATCH] update contract val to be replaced with MAX-MESSAGE_LIMIT --- deploy_rln_contract.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_rln_contract.sh b/deploy_rln_contract.sh index fe75162..c92c7e6 100644 --- a/deploy_rln_contract.sh +++ b/deploy_rln_contract.sh @@ -16,7 +16,7 @@ fi cd /waku-rlnv2-contract #3. Replace the hardcoded MAX_MESSAGE_LIMIT -sed -i "s/\b20\b/${MAX_MESSAGE_LIMIT}/g" script/Deploy.s.sol +sed -i "s/\b100\b/${MAX_MESSAGE_LIMIT}/g" script/Deploy.s.sol # 4. Compile echo "forge install..."