Remove unnecessary trait bounds

This commit is contained in:
Paul Hauner
2019-08-23 13:02:17 +10:00
parent a358bbc1b1
commit a8de94ca13
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ where
impl<L, E> BeaconChainTypes for CommonTypes<L, E>
where
L: LmdGhost<MemoryStore, E> + 'static,
E: EthSpec + 'static,
E: EthSpec,
{
type Store = MemoryStore;
type SlotClock = TestingSlotClock;
@@ -70,7 +70,7 @@ where
pub struct BeaconChainHarness<L, E>
where
L: LmdGhost<MemoryStore, E> + 'static,
E: EthSpec + 'static,
E: EthSpec,
{
pub chain: BeaconChain<CommonTypes<L, E>>,
pub keypairs: Vec<Keypair>,