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 }); } } }