Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix network tests
Browse files Browse the repository at this point in the history
  • Loading branch information
expenses committed Dec 9, 2019
1 parent 4e458f7 commit e1338cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network/src/tests/validation.rs
Expand Up @@ -419,8 +419,8 @@ impl av_store::ProvideGossipMessages for DummyGossipMessages {
fn gossip_messages_for(
&self,
_topic: Hash
) -> Box<dyn futures03::Stream<Item = (Hash, Hash, ErasureChunk)> + Send + Unpin> {
Box::new(futures03::stream::empty())
) -> Box<dyn futures::Stream<Item = (Hash, Hash, ErasureChunk)> + Send + Unpin> {
Box::new(stream::empty())
}

fn gossip_erasure_chunk(
Expand Down

0 comments on commit e1338cb

Please sign in to comment.