Skip to content
Snippets Groups Projects
Commit 2bd41a02 authored by Pierre Krieger's avatar Pierre Krieger Committed by GitHub
Browse files

Fix transactions not being propagated to authorities (#8212)

parent 5013e763
No related merge requests found
......@@ -439,7 +439,7 @@ impl<B: BlockT + 'static, H: ExHashT> TransactionsHandler<B, H> {
for (who, peer) in self.peers.iter_mut() {
// never send transactions to the light node
if !matches!(peer.role, ObservedRole::Full) {
if matches!(peer.role, ObservedRole::Light) {
continue;
}
......
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