Skip to content

Commit

Permalink
fix: default committee size (#783)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Cifko authored Nov 22, 2023
1 parent 26f8f82 commit 6d48db4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
Expand Down

0 comments on commit 6d48db4

Please sign in to comment.