Skip to content

Commit

Permalink
Change quorum size to 3 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
cptartur authored Jun 5, 2024
1 parent 10d7f90 commit 835d72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurons/src/quorum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::Vote;
use anyhow::{anyhow, bail, Result};
use std::collections::HashMap;

const QUORUM_SIZE: u32 = 5;
const QUORUM_SIZE: u32 = 3;
const QUORUM_ABSOLUTE_PARTICIPATION_THRESHOLD: f64 = 1.0 / 2.0;
const QUORUM_RELATIVE_PARTICIPATION_THRESHOLD: f64 = 2.0 / 3.0;

Expand Down

0 comments on commit 835d72d

Please sign in to comment.