Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
track if a txn is forwarded
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Jan 18, 2024
1 parent 2a8e5da commit fcdbcaf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/src/banking_stage/unprocessed_transaction_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,14 @@ impl ThreadLocalUnprocessedPackets {
}
}

for packet in &packets_to_forward {
debug!(
"Banking stage, forwarding txn {:?}, is tracer: {}",
packet.transaction().get_signatures().first(),
packet.original_packet().meta().is_tracer_packet()
);
}

let accepted_packet_indexes =
Self::add_filtered_packets_to_forward_buffer(
forward_buffer,
Expand Down

0 comments on commit fcdbcaf

Please sign in to comment.