Browse Source

consensus: Increase epoch delta to 30.

parazyd 4 years ago
parent
commit
04362d292f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/consensus/state.rs

+ 1 - 1
src/consensus/state.rs

@@ -32,7 +32,7 @@ use crate::{
 };
 };
 
 
 /// `2 * DELTA` represents epoch time
 /// `2 * DELTA` represents epoch time
-pub const DELTA: u64 = 10;
+pub const DELTA: u64 = 30;
 
 
 /// This struct represents the information required by the consensus algorithm
 /// This struct represents the information required by the consensus algorithm
 #[derive(Debug, Clone, SerialEncodable, SerialDecodable)]
 #[derive(Debug, Clone, SerialEncodable, SerialDecodable)]