Skip to content
Snippets Groups Projects
Unverified Commit a875f180 authored by Nazar Mokrynskyi's avatar Nazar Mokrynskyi Committed by GitHub
Browse files

Use type alias for transactions (#6431)

Very tiny change that helps with debugging of transactions propagation
by referring to the same type alias not only at receiving side, but also
on the sending size for symmetry
parent 872d9491
Branches
No related merge requests found
Pipeline #505269 waiting for manual action with stages
in 1 hour, 28 minutes, and 11 seconds
......@@ -480,7 +480,7 @@ where
continue
}
let (hashes, to_send): (Vec<_>, Vec<_>) = transactions
let (hashes, to_send): (Vec<_>, Transactions<_>) = transactions
.iter()
.filter(|(hash, _)| peer.known_transactions.insert(hash.clone()))
.cloned()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment