Просмотр исходного кода

consensus: Increase epoch delta to 30.

parazyd 4 лет назад
Родитель
Сommit
04362d292f
1 измененных файлов с 1 добавлено и 1 удалено
  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)]