src/consensus/proto: removed redundant continue

This commit is contained in:
aggstam
2022-07-19 00:09:27 +03:00
parent 8e8ae97c9d
commit b64edcbe41
2 changed files with 0 additions and 2 deletions

View File

@@ -65,7 +65,6 @@ impl ProtocolParticipant {
self.p2p.broadcast_with_exclude(participant_copy, &exclude_list).await
{
error!("ProtocolParticipant::handle_receive_participant(): p2p broadcast failed: {}", e);
continue
};
}
}

View File

@@ -98,7 +98,6 @@ impl ProtocolTx {
if self.state.write().await.append_tx(tx_copy.clone()) {
if let Err(e) = self.p2p.broadcast_with_exclude(tx_copy, &exclude_list).await {
error!("handle_receive_tx(): p2p broadcast fail: {}", e);
continue
};
}
}