Shorten delay before testnet start

This commit is contained in:
Paul Hauner
2019-11-27 08:50:50 +11:00
parent 728e28e6ad
commit 103bde01da

View File

@@ -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)
}