From: Elias Rohrer Date: Mon, 27 Mar 2023 11:19:15 +0000 (+0200) Subject: Move test `bitcoind`/`electrsd` out of `OnceCell` X-Git-Tag: v0.0.115~50^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=f75ad8021b5b46a1a7cb2b632bb9019a8d5f4eac;hp=f75ad8021b5b46a1a7cb2b632bb9019a8d5f4eac;p=rust-lightning Move test `bitcoind`/`electrsd` out of `OnceCell` `OnceCell` doesn't call `drop`, which makes the spawned `bitcoind`/`electrsd` instances linger around after our tests have finished. To fix this, we move them out of `OnceCell` and let every test that needs them spawn their own instances. This additional let us drop the `OnceCell` dev dependency. ---