From 5eb53dcb84bcd6bc22f07cc67099795643582ab0 Mon Sep 17 00:00:00 2001 From: Keyvan Kambakhsh Date: Mon, 17 Jul 2023 23:56:05 +0330 Subject: [PATCH] Decrease num update batches --- Cargo.toml | 2 +- src/config/blockchain.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6bfee4a..c1a6d36e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bazuka" -version = "0.19.19" +version = "0.19.20" authors = ["El Geuse "] edition = "2021" diff --git a/src/config/blockchain.rs b/src/config/blockchain.rs index 743a07af..9fc69b6d 100644 --- a/src/config/blockchain.rs +++ b/src/config/blockchain.rs @@ -309,7 +309,7 @@ pub fn blockchain_config_template(initial_balances: bool) -> BlockchainConfig { log4_deposit_batch_size: MPN_LOG4_DEPOSIT_BATCH_SIZE, log4_withdraw_batch_size: MPN_LOG4_WITHDRAW_BATCH_SIZE, log4_update_batch_size: MPN_LOG4_UPDATE_BATCH_SIZE, - mpn_num_update_batches: 4, + mpn_num_update_batches: 1, mpn_num_deposit_batches: 1, mpn_num_withdraw_batches: 1, deposit_vk: zk::ZkVerifierKey::Groth16(Box::new(MPN_DEPOSIT_VK.clone())),