Skip to content
Snippets Groups Projects
Commit 48c5d5ce authored by Gavin Wood's avatar Gavin Wood Committed by GitHub
Browse files

Sessions/epochs are 1 hour not 4. (#630)

parent d63f2043
No related merge requests found
......@@ -32,8 +32,10 @@ pub mod time {
// Testnet
// pub const MILLISECS_PER_BLOCK: Moment = 1000;
pub const SLOT_DURATION: Moment = MILLISECS_PER_BLOCK;
// Kusama & mainnet
pub const EPOCH_DURATION_IN_BLOCKS: BlockNumber = 4 * HOURS;
// Kusama
pub const EPOCH_DURATION_IN_BLOCKS: BlockNumber = 1 * HOURS;
// Mainnet
// pub const EPOCH_DURATION_IN_BLOCKS: BlockNumber = 4 * HOURS;
// Testnet
// pub const EPOCH_DURATION_IN_BLOCKS: BlockNumber = 10 * MINUTES;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment