Fix clippy comment

This commit is contained in:
Roman Zeyde 2026-04-23 13:22:04 +02:00
parent 414dc90e21
commit bad9dfdc88
No known key found for this signature in database

View file

@ -80,7 +80,7 @@ impl MempoolSyncUpdate {
);
let chunk_entries: Vec<Entry> = txids_chunk
.iter()
.zip(entries.into_iter().zip(txs.into_iter()))
.zip(entries.into_iter().zip(txs))
.filter_map(|(txid, (entry, tx))| {
let entry = match entry {
Some(entry) => entry,