Move test `bitcoind`/`electrsd` out of `OnceCell`
authorElias Rohrer <ero@tnull.de>
Mon, 27 Mar 2023 11:19:15 +0000 (13:19 +0200)
committerElias Rohrer <ero@tnull.de>
Tue, 28 Mar 2023 15:13:54 +0000 (17:13 +0200)
`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.


No differences found