We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1a9e0 commit 7908e34Copy full SHA for 7908e34
mempool/src/core_mempool/mempool.rs
@@ -431,7 +431,7 @@ impl Mempool {
431
432
counters::mempool_service_transactions(counters::GET_BLOCK_LABEL, block.len());
433
counters::MEMPOOL_SERVICE_BYTES_GET_BLOCK.observe(total_bytes as f64);
434
- for transaction in &block {
+ for (transaction, _) in &block {
435
self.log_consensus_pulled_latency(transaction.sender(), transaction.sequence_number());
436
}
437
block
0 commit comments