From b6a0f6ad865add3f3bd66c7da20f113a434c02a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 9 Oct 2018 12:37:56 +0100 Subject: [PATCH] ethcore: change eip1234 delay to 2_000_000 --- ethcore/src/ethereum/ethash.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/src/ethereum/ethash.rs b/ethcore/src/ethereum/ethash.rs index 40ecd6ada8e..0c045d236e5 100644 --- a/ethcore/src/ethereum/ethash.rs +++ b/ethcore/src/ethereum/ethash.rs @@ -38,7 +38,7 @@ const SNAPSHOT_BLOCKS: u64 = 5000; const MAX_SNAPSHOT_BLOCKS: u64 = 30000; /// Default number of blocks the difficulty bomb is delayed in EIP-{649,1234} const DEFAULT_EIP649_DELAY: u64 = 3_000_000; -const DEFAULT_EIP1234_DELAY: u64 = 3_000_000; +const DEFAULT_EIP1234_DELAY: u64 = 2_000_000; /// Ethash specific seal #[derive(Debug, PartialEq)] @@ -526,7 +526,7 @@ mod tests { eip649_delay: 3_000_000, eip649_reward: None, eip1234_transition: u64::max_value(), - eip1234_delay: 3_000_000, + eip1234_delay: 2_000_000, eip1234_reward: None, expip2_transition: u64::max_value(), expip2_duration_limit: 30,