We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f831e18 commit be87f7fCopy full SHA for be87f7f
1 file changed
orange-sdk/tests/test_utils.rs
@@ -65,7 +65,8 @@ fn create_bitcoind(uuid: Uuid) -> Bitcoind {
65
conf.args.push("-txindex");
66
conf.args.push("-rpcworkqueue=100");
67
conf.staticdir = Some(temp_dir().join(format!("orange-test-{uuid}/bitcoind")));
68
- let bitcoind = Bitcoind::with_conf(corepc_node::downloaded_exe_path().unwrap(), &conf).unwrap();
+ let bitcoind = Bitcoind::with_conf(corepc_node::downloaded_exe_path().unwrap(), &conf)
69
+ .expect(&format!("Failed to start bitcoind for test {uuid}"));
70
71
// Wait for bitcoind to be ready before returning
72
wait_for_bitcoind_ready(&bitcoind);
0 commit comments