Skip to content

Commit 7908e34

Browse files
committed
fix: bad unpack.
1 parent 3b1a9e0 commit 7908e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mempool/src/core_mempool/mempool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ impl Mempool {
431431

432432
counters::mempool_service_transactions(counters::GET_BLOCK_LABEL, block.len());
433433
counters::MEMPOOL_SERVICE_BYTES_GET_BLOCK.observe(total_bytes as f64);
434-
for transaction in &block {
434+
for (transaction, _) in &block {
435435
self.log_consensus_pulled_latency(transaction.sender(), transaction.sequence_number());
436436
}
437437
block

0 commit comments

Comments
 (0)