From cb11656e12b9e835f26c78ee4cd4a887aa5af8e1 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Tue, 28 May 2019 14:33:13 +1000 Subject: [PATCH] Use `LighthouseTestnet` params, not `FewValidators` --- beacon_node/client/src/beacon_chain_types.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beacon_node/client/src/beacon_chain_types.rs b/beacon_node/client/src/beacon_chain_types.rs index f92304299..968630069 100644 --- a/beacon_node/client/src/beacon_chain_types.rs +++ b/beacon_node/client/src/beacon_chain_types.rs @@ -10,7 +10,7 @@ use slot_clock::SlotClock; use std::sync::Arc; use tree_hash::TreeHash; use types::{ - test_utils::TestingBeaconStateBuilder, BeaconBlock, EthSpec, FewValidatorsEthSpec, Hash256, + test_utils::TestingBeaconStateBuilder, BeaconBlock, EthSpec, Hash256, LighthouseTestnetEthSpec, }; /// Provides a new, initialized `BeaconChain` @@ -26,7 +26,7 @@ impl BeaconChainTypes for TestnetMemoryBeaconChainTypes { type Store = MemoryStore; type SlotClock = SystemTimeSlotClock; type ForkChoice = BitwiseLMDGhost; - type EthSpec = FewValidatorsEthSpec; + type EthSpec = LighthouseTestnetEthSpec; } impl InitialiseBeaconChain for TestnetMemoryBeaconChainTypes { @@ -43,7 +43,7 @@ impl BeaconChainTypes for TestnetDiskBeaconChainTypes { type Store = DiskStore; type SlotClock = SystemTimeSlotClock; type ForkChoice = BitwiseLMDGhost; - type EthSpec = FewValidatorsEthSpec; + type EthSpec = LighthouseTestnetEthSpec; } impl InitialiseBeaconChain for TestnetDiskBeaconChainTypes {