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

@@ -39,7 +39,7 @@ pub struct ClientType<S: Store, E: EthSpec> {
impl<S, E> BeaconChainTypes for ClientType<S, E>
where
S: Store + 'static,
E: EthSpec + 'static + Clone,
E: EthSpec,
{
type Store = S;
type SlotClock = SystemTimeSlotClock;