mirror of
https://github.com/arnaucube/miksi-core.git
synced 2026-02-07 03:26:41 +01:00
Separate builds for prod & tests for faster tests
This commit is contained in:
@@ -107,4 +107,4 @@ template Deposit(nLevels) {
|
||||
smtNew.value <== hash.out;
|
||||
}
|
||||
|
||||
component main = Deposit(17); // 16 real levels (due circom leaf protection)
|
||||
/* component main = Deposit(17); // 16 real levels (due circom leaf protection) */
|
||||
|
||||
2
circuits/main/deposit.circom
Normal file
2
circuits/main/deposit.circom
Normal file
@@ -0,0 +1,2 @@
|
||||
include "../deposit.circom";
|
||||
component main = Deposit(17); // 16 real levels (due circom leaf protection)
|
||||
3
circuits/main/withdraw.circom
Normal file
3
circuits/main/withdraw.circom
Normal file
@@ -0,0 +1,3 @@
|
||||
include "../withdraw.circom";
|
||||
|
||||
component main = Withdraw(17); // 16 real levels (due circom leaf protection)
|
||||
@@ -62,4 +62,4 @@ template Withdraw(nLevels) {
|
||||
smtV.value <== hash.out;
|
||||
}
|
||||
|
||||
component main = Withdraw(17); // 16 real levels (due circom leaf protection)
|
||||
/* component main = Withdraw(17); // 16 real levels (due circom leaf protection) */
|
||||
|
||||
Reference in New Issue
Block a user