Correct minimal chainspec modifications

This commit is contained in:
Age Manning 2019-08-07 15:55:09 +10:00
parent dba7bfc4e1
commit b3e0aad7bf
No known key found for this signature in database
GPG Key ID: 05EED64B79E06A93

View File

@ -202,15 +202,12 @@ impl ChainSpec {
pub fn minimal() -> Self {
// Note: bootnodes to be updated when static nodes exist.
let boot_nodes = vec![];
let genesis_slot = Slot::new(0);
Self {
target_committee_size: 4,
shuffle_round_count: 10,
min_genesis_active_validator_count: 64,
max_epochs_per_crosslink: 4,
min_attestation_inclusion_delay: 2,
genesis_slot,
network_id: 2, // lighthouse testnet network id
boot_nodes,
..ChainSpec::mainnet()
@ -221,15 +218,12 @@ impl ChainSpec {
///
/// This allows us to customize a chain spec for interop testing.
pub fn interop() -> Self {
let genesis_slot = Slot::new(0);
let boot_nodes = vec![];
Self {
seconds_per_slot: 12,
target_committee_size: 4,
shuffle_round_count: 10,
min_attestation_inclusion_delay: 2,
genesis_slot,
network_id: 13,
boot_nodes,
..ChainSpec::mainnet()