From 41a6060be70b09379691f2a0cc3d550352283b89 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 27 Mar 2021 22:08:32 +0100 Subject: [PATCH] Update backend/src/aggregator.rs Co-authored-by: Maciej Hirsz <1096222+maciejhirsz@users.noreply.github.com> --- backend/src/aggregator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/aggregator.rs b/backend/src/aggregator.rs index ad27b90..3d9c489 100644 --- a/backend/src/aggregator.rs +++ b/backend/src/aggregator.rs @@ -219,7 +219,7 @@ impl Handler for Aggregator { } else { log::warn!(target: "Aggregator::AddNode", "Chain {} is over quota ({})", chain.label, chain.max_nodes); let reason = CloseReason{ code: CloseCode::Again, description: Some("Overquota".into()) }; - let _ = mute.do_send(Mute { reason }); + let _ = rec.do_send(Mute { reason }); } } }