Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
creativcoder committed Dec 1, 2022
1 parent dddf26a commit c63b9c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions blockchain/chain_sync/src/chain_muxer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ use forest_libp2p::{
use forest_message::SignedMessage;
use forest_message_pool::{MessagePool, Provider};
use forest_state_manager::StateManager;
use futures::StreamExt;
use futures::{future::try_join_all, future::Future, try_join};
use fvm_ipld_blockstore::Blockstore;
use fvm_shared::message::Message;
Expand Down Expand Up @@ -833,7 +832,7 @@ where
}
Some(Ok(Err(e))) => {
error!("Following the network failed unexpectedly: {}", e);
Err(e.into())
Err(e)
}
// This arm is reliably unreachable because the JoinSet
// has two futures and we only resolve one before returning
Expand Down

0 comments on commit c63b9c3

Please sign in to comment.