When I run the following example I get no data returned (I tried both TestNet and MainNet) - is this example still relevant?
cargo run --bin ws_l2_book
I also get an unclean exit error, is this a known issue with the examples? I think it is impl Drop for WsManager causing this at process exit via a block_on call:
Cannot start a runtime from within a runtime. This happens because a function (like `block_on`) attempted to block the current thread while the thread is being used to drive asynchronous tasks.
When I run the following example I get no data returned (I tried both TestNet and MainNet) - is this example still relevant?
cargo run --bin ws_l2_book
I also get an unclean exit error, is this a known issue with the examples? I think it is
impl Drop for WsManager
causing this at process exit via ablock_on
call: