From 103bde01da31345926ec7582a910e62a1c529966 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 27 Nov 2019 08:50:50 +1100 Subject: [PATCH] Shorten delay before testnet start --- beacon_node/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/src/config.rs b/beacon_node/src/config.rs index bb43fb5396..0e6b40fb3c 100644 --- a/beacon_node/src/config.rs +++ b/beacon_node/src/config.rs @@ -299,7 +299,7 @@ fn process_testnet_subcommand( // https://github.com/ethereum/eth2.0-specs/blob/v0.9.2/specs/validator/0_beacon-chain-validator.md#eth1-data const SECONDS_PER_ETH1_BLOCK: u64 = 15; // TODO: set from 10 back to 2 - spec.seconds_per_day = SECONDS_PER_ETH1_BLOCK * spec.eth1_follow_distance * 10; + spec.seconds_per_day = SECONDS_PER_ETH1_BLOCK * spec.eth1_follow_distance * 2; builder.set_genesis(ClientGenesis::DepositContract) }