From 7d1d5bf76aef6454775b77653491e8f7152d4265 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Wed, 17 Jul 2024 19:47:32 +0200 Subject: [PATCH] Update readme with new MAX_MESSAGE_LIMIT. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f198ad..505ce72 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,8 @@ export MSG_SIZE_KBYTES=10 export PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 export ETH_FROM=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 export RLN_RELAY_EPOCH_SEC=10 -export RLN_RELAY_MSG_LIMIT=2 # Currently the value must be <= 20, as that's the contract currently hardcoded maximum. +export RLN_RELAY_MSG_LIMIT=2 +export MAX_MESSAGE_LIMIT=100 # Contract's message limit. Needs to be higher or equal than RLN_RELAY_MSG_LIMIT, otherwise nodes won't start correctly. docker-compose --compatibility up -d ```