You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Post-#791, we impl chain::Listen for RefCell<ChannelMonitor..>, which is both awkward and very inconsistent with all our other APIs. Instead, we should probably migrate to putting mutexes inside ChannelMonitor, which has a nice side benefit of being able to parallelize ChainMonitor::update_channel - if we move the HashMap into an RwLock we can take a read() lock there.
The text was updated successfully, but these errors were encountered:
Post-#791, we
impl chain::Listen
forRefCell<ChannelMonitor..>
, which is both awkward and very inconsistent with all our other APIs. Instead, we should probably migrate to putting mutexes insideChannelMonitor
, which has a nice side benefit of being able to parallelizeChainMonitor::update_channel
- if we move the HashMap into an RwLock we can take a read() lock there.The text was updated successfully, but these errors were encountered: