Skip to content
Snippets Groups Projects
Verified Commit 81273fde authored by Michal Kucharczyk's avatar Michal Kucharczyk
Browse files

network::transactions: debug removed

parent 5a5fb095
No related merge requests found
......@@ -233,13 +233,7 @@ impl<H: ExHashT> TransactionsHandlerController<H> {
/// This transaction will be fetched from the `TransactionPool` that was passed at
/// initialization as part of the configuration and propagated to peers.
pub fn propagate_transaction(&self, hash: H) {
let r = self.to_handler.unbounded_send(ToHandler::PropagateTransaction(hash.clone()));
if r.is_err() {
log::debug!(
"[{hash:?} ] import_notification_stream: sending failed {:?}",
r.unwrap_err()
);
}
let _ = self.to_handler.unbounded_send(ToHandler::PropagateTransaction(hash));
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment