Skip to content

Commit 7085f7d

Browse files
committed
[REVERTME] debug test
1 parent e3cd683 commit 7085f7d

File tree

1 file changed

+2
-2
lines changed
  • crates/networking/p2p/rlpx/connection

1 file changed

+2
-2
lines changed

crates/networking/p2p/rlpx/connection/server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)