rust-lightning/lightning-block-sync
Matt Corallo 84a08dbf8a Make lightning-block-sync's init module slightly more generic
Users who want to use lightning-block-sync's init module would
be reasonable in wanting to use it in a multithreaded environment,
however because it takes a list of listeners as dyn chain::Listen
without any Send or Sync bound they fail in doing so.

Here we make the type bounds on `chain::Listen` generic across
`chain::Listen + ?Sized`, which the existing bound of `&dyn
chain::Listen` satisfies. Thus, this is strictly less restrictive
and allows for the use of `&dyn chain::Listen + Send + Sync`.
2022-03-09 18:20:43 +00:00
..
src Make lightning-block-sync's init module slightly more generic 2022-03-09 18:20:43 +00:00
Cargo.toml Bump crate versions to 0.0.105/invoice 0.13 2022-03-01 00:43:24 +00:00