chore: decrease pipeline threshold to 64 (#3249)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Dan Cline
2023-06-19 18:35:10 -04:00
committed by GitHub
parent 501fd0d926
commit 8dfdf658a1
2 changed files with 6 additions and 2 deletions

View File

@ -13,6 +13,9 @@ pub const SELECTOR_LEN: usize = 4;
/// Maximum extra data size in a block after genesis
pub const MAXIMUM_EXTRA_DATA_SIZE: usize = 32;
/// An EPOCH is a series of 32 slots.
pub const EPOCH_SLOTS: u64 = 32;
/// The duration of a slot in seconds.
///
/// This is the time period of 12 seconds in which a randomly chosen validator has time to propose a
@ -20,7 +23,7 @@ pub const MAXIMUM_EXTRA_DATA_SIZE: usize = 32;
pub const SLOT_DURATION: Duration = Duration::from_secs(12);
/// An EPOCH is a series of 32 slots (~6.4min).
pub const EPOCH_DURATION: Duration = Duration::from_secs(12 * 32);
pub const EPOCH_DURATION: Duration = Duration::from_secs(12 * EPOCH_SLOTS);
/// The default block nonce in the beacon consensus
pub const BEACON_NONCE: u64 = 0u64;