Replace unbounded channels with bounded ones #973
Labels
difficulty:moderate
getting-started
Issues that can be tackled if you don't know the internals of libp2p very well
priority:nicetohave
We have two usages of
mpsc::UnboudedSender
/mpsc::UnboundedReceiver
. In order to avoid possible issues with the buffer growing forever, it would be nice to replace them with bounded channels (ie.mpsc::Sender
/mpsc::Receiver
).The text was updated successfully, but these errors were encountered: