From 7c21dbbdf42239aafc32ebede47c836e00f91a67 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Mon, 29 Mar 2021 16:30:20 +0200 Subject: [PATCH] use unbounded when notifying distribution of new blocks (#2752) --- polkadot/node/core/approval-voting/src/import.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/core/approval-voting/src/import.rs b/polkadot/node/core/approval-voting/src/import.rs index 2296484d65..e806de1a89 100644 --- a/polkadot/node/core/approval-voting/src/import.rs +++ b/polkadot/node/core/approval-voting/src/import.rs @@ -790,7 +790,7 @@ pub(crate) async fn handle_new_head( "Informing distribution of newly imported chain", ); - ctx.send_message(ApprovalDistributionMessage::NewBlocks(approval_meta).into()).await; + ctx.send_unbounded_message(ApprovalDistributionMessage::NewBlocks(approval_meta).into()); Ok(imported_candidates) }