mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore: enable dbg_macro lint (#12409)
This commit is contained in:
@@ -98,7 +98,10 @@ where
|
||||
database_hash: block_hash,
|
||||
})
|
||||
}
|
||||
Err(e) => return Err(dbg!(e).into()),
|
||||
Err(e) => {
|
||||
debug!(?e);
|
||||
return Err(e.into());
|
||||
}
|
||||
}
|
||||
|
||||
debug!("Writing genesis block.");
|
||||
|
||||
@@ -311,7 +311,6 @@ impl<T: TransactionOrdering> PendingPool<T> {
|
||||
|
||||
// send the new transaction to any existing pendingpool static file iterators
|
||||
if self.new_transaction_notifier.receiver_count() > 0 {
|
||||
dbg!("notify");
|
||||
let _ = self.new_transaction_notifier.send(tx.clone());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user