Skip to content

Commit

Permalink
Merge pull request #750 from fluidvanadium/house
Browse files Browse the repository at this point in the history
improved regtest error msg
  • Loading branch information
AloeareV authored Dec 13, 2023
2 parents 7d04303 + eeb4012 commit 588ac64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zingo-testutils/src/regtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ impl RegtestManager {
log::info!("{:?}", &command.get_envs());
log::info!("{:?}", &command.get_program());

let child = command.spawn().unwrap();
let child = command
.spawn()
.expect("COULD NOT START ZCASHD does it exist? see $G/docs/ZINGOCLI-REGTEST.md");
log::debug!("zcashd is starting in regtest mode, please standby...");

(
Expand Down

0 comments on commit 588ac64

Please sign in to comment.