From 659a04cad6a03b1bfb40695c056d0d3c607b2805 Mon Sep 17 00:00:00 2001
From: Robert Habermeier <rphmeier@gmail.com>
Date: Mon, 14 Jun 2021 17:42:04 +0200
Subject: [PATCH] use correct unbounded meter for statement distribution
 (#3245)

---
 polkadot/node/overseer/src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/polkadot/node/overseer/src/lib.rs b/polkadot/node/overseer/src/lib.rs
index f43dc9c45ab..13461a06074 100644
--- a/polkadot/node/overseer/src/lib.rs
+++ b/polkadot/node/overseer/src/lib.rs
@@ -1538,7 +1538,7 @@ where
 			&mut s,
 			statement_distribution_bounded_tx,
 			stream::select(statement_distribution_bounded_rx, statement_distribution_unbounded_rx),
-			candidate_validation_unbounded_tx.meter().clone(),
+			statement_distribution_unbounded_tx.meter().clone(),
 			channels_out.clone(),
 			to_overseer_tx.clone(),
 			all_subsystems.statement_distribution,
-- 
GitLab