From 1515959a01c47fcc9243e411899c3facb81d7b52 Mon Sep 17 00:00:00 2001 From: poma Date: Wed, 11 Dec 2019 17:15:07 +0700 Subject: [PATCH] change tree depth to 20 --- .env.example | 2 +- circuits/withdraw.circom | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 20f30fd..41fef19 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -MERKLE_TREE_HEIGHT=16 +MERKLE_TREE_HEIGHT=20 # in wei ETH_AMOUNT=100000000000000000 TOKEN_AMOUNT=100000000000000000 diff --git a/circuits/withdraw.circom b/circuits/withdraw.circom index d92a324..bed8cd6 100644 --- a/circuits/withdraw.circom +++ b/circuits/withdraw.circom @@ -52,4 +52,4 @@ template Withdraw(levels) { } } -component main = Withdraw(16); +component main = Withdraw(20);