use unbounded when notifying distribution of new blocks (#2752)

This commit is contained in:
Robert Habermeier
2021-03-29 16:30:20 +02:00
committed by GitHub
parent f2f0951b58
commit 7c21dbbdf4
@@ -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)
}