Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
ethcore: change eip1234 delay to 2_000_000
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilva committed Oct 9, 2018
1 parent 6b13167 commit b6a0f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethcore/src/ethereum/ethash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit b6a0f6a

Please sign in to comment.