diff --git a/substrate/client/consensus/slots/src/slots.rs b/substrate/client/consensus/slots/src/slots.rs index 17a931b7c4154a8a03d57ea948ac20ee8c63c4bf..32316c56c9f53674fa4ac98b7ac85e45934d9f23 100644 --- a/substrate/client/consensus/slots/src/slots.rs +++ b/substrate/client/consensus/slots/src/slots.rs @@ -109,7 +109,7 @@ impl<SC> Slots<SC> { } } -impl<SC: SlotCompatible + Unpin> Stream for Slots<SC> { +impl<SC: SlotCompatible> Stream for Slots<SC> { type Item = Result<SlotInfo, Error>; fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> { @@ -165,3 +165,6 @@ impl<SC: SlotCompatible + Unpin> Stream for Slots<SC> { } } } + +impl<SC> Unpin for Slots<SC> { +}