Update Avalanche to use Epoch Stakes (#3900)

This commit is contained in:
Sagar Dhawan
2019-04-19 22:31:40 -07:00
committed by GitHub
parent 970cc32e65
commit c0bffb56df
5 changed files with 22 additions and 24 deletions

View File

@ -51,9 +51,8 @@ use std::time::{Duration, Instant};
pub const FULLNODE_PORT_RANGE: PortRange = (8000, 10_000);
/// The fanout for Ledger Replication
pub const DATA_PLANE_FANOUT: usize = 200;
pub const NEIGHBORHOOD_SIZE: usize = DATA_PLANE_FANOUT;
/// The Data plane "neighborhood" size
pub const NEIGHBORHOOD_SIZE: usize = 200;
/// Set whether node capacity should grow as layers are added
pub const GROW_LAYER_CAPACITY: bool = false;