From 6d48db4b6e6789ccefa32e927e1f4be147ed64bb Mon Sep 17 00:00:00 2001 From: Martin Stefcek <35243812+Cifko@users.noreply.github.com> Date: Wed, 22 Nov 2023 21:02:51 +0100 Subject: [PATCH] fix: default committee size (#783) Description --- The default committee size of 1 is breaking some tests. Motivation and Context --- How Has This Been Tested? --- Running the failed cucumber tests `New validator node registers and syncs` and `Template registration and invocation in a 2-VN committee` What process can a PR reviewer use to test or verify this change? --- The CI should pass, or run the same test. Breaking Changes --- - [x] None - [ ] Requires data directory to be deleted - [ ] Other - Please specify --- applications/tari_dan_app_utilities/src/consensus_constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/tari_dan_app_utilities/src/consensus_constants.rs b/applications/tari_dan_app_utilities/src/consensus_constants.rs index f91d5ec0a..5abdc5493 100644 --- a/applications/tari_dan_app_utilities/src/consensus_constants.rs +++ b/applications/tari_dan_app_utilities/src/consensus_constants.rs @@ -33,7 +33,7 @@ impl ConsensusConstants { pub const fn devnet() -> Self { Self { base_layer_confirmations: 3, - committee_size: 1, + committee_size: 7, hotstuff_rounds: 4, } }