diff --git a/srml/timestamp/src/lib.rs b/srml/timestamp/src/lib.rs index 29f2407ee..948ce714e 100755 --- a/srml/timestamp/src/lib.rs +++ b/srml/timestamp/src/lib.rs @@ -181,8 +181,10 @@ impl ProvideInherentData for InherentDataProvider { // ICEFROG HOTFIX: mutate timestamp to make it revert back in time and have slots // happen at 3x their speed from then until we have caught up with the present time. - const REVIVE_TIMESTAMP: u64 = 1579320000000; - const FORK_TIMESTAMP: u64 = 1579057500 * 1000; + // 1/19 2020 11:00:00 + const REVIVE_TIMESTAMP: u64 = 1_579_402_800_000; + // #328000 + const FORK_TIMESTAMP: u64 = 1_579_055_694_000; const WARP_FACTOR: u64 = 3; let time_since_revival = timestamp.saturating_sub(REVIVE_TIMESTAMP);