mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 09:27:59 +00:00
Adds a comment as requested (#1922)
* Adds a comment as requested * Update node/core/bitfield-signing/src/lib.rs Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com> Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com>
This commit is contained in:
@@ -210,6 +210,10 @@ async fn construct_availability_bitfield(
|
||||
let availability_cores = get_availability_cores(relay_parent, sender).await?;
|
||||
|
||||
// Wrap the sender in a Mutex to share it between the futures.
|
||||
//
|
||||
// We use a `Mutex` here to not `clone` the sender inside the future, because
|
||||
// cloning the sender will always increase the capacity of the channel by one.
|
||||
// (for the lifetime of the sender)
|
||||
let sender = Mutex::new(sender);
|
||||
|
||||
// Handle all cores concurrently
|
||||
|
||||
Reference in New Issue
Block a user