File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/networking/p2p/rlpx/connection Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1005,7 +1005,7 @@ async fn handle_incoming_message(
10051005 send ( state, Message :: PooledTransactions ( response) ) . await ?;
10061006 }
10071007 Message :: PooledTransactions ( msg) if peer_supports_eth => {
1008- if state. blockchain . is_synced ( ) {
1008+ if dbg ! ( state. blockchain. is_synced( ) ) {
10091009 if let Some ( requested) = state. requested_pooled_txs . get ( & msg. id ) {
10101010 let fork = state. blockchain . current_fork ( ) . await ?;
10111011 if let Err ( error) = msg. validate_requested ( requested, fork) . await {
@@ -1027,7 +1027,7 @@ async fn handle_incoming_message(
10271027
10281028 #[ cfg( not( feature = "l2" ) ) ]
10291029 let is_l2_mode = false ;
1030- match msg. handle ( & state. node , & state. blockchain , is_l2_mode) . await {
1030+ match dbg ! ( msg. handle( & state. node, & state. blockchain, is_l2_mode) . await ) {
10311031 // If we receive a blob transaction without blobs or with blobs that don't match the versioned hashes we must disconnect from the peer
10321032 Err (
10331033 error @ MempoolError :: BlobsBundleError (
You can’t perform that action at this time.
0 commit comments