Parcourir la source

consensus: Increase epoch delta to 30.

parazyd il y a 4 ans
Parent
commit
04362d292f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/consensus/state.rs

+ 1 - 1
src/consensus/state.rs

@@ -32,7 +32,7 @@ use crate::{
 };
 
 /// `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
 #[derive(Debug, Clone, SerialEncodable, SerialDecodable)]