mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 01:41:03 +00:00
Fix transactions not being propagated to authorities (#8212)
This commit is contained in:
@@ -439,7 +439,7 @@ impl<B: BlockT + 'static, H: ExHashT> TransactionsHandler<B, H> {
|
|||||||
|
|
||||||
for (who, peer) in self.peers.iter_mut() {
|
for (who, peer) in self.peers.iter_mut() {
|
||||||
// never send transactions to the light node
|
// never send transactions to the light node
|
||||||
if !matches!(peer.role, ObservedRole::Full) {
|
if matches!(peer.role, ObservedRole::Light) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user