mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Fix test fail() msg
This commit is contained in:
parent
176f0b2ad8
commit
9637cc0943
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public final class BitcoinCliHelper {
|
|||
BitcoinCli newAddress = new BitcoinCli(config, "getnewaddress").run();
|
||||
|
||||
if (newAddress.isError())
|
||||
fail(format("Could generate new bitcoin address:%n%s", newAddress.getErrorMessage()));
|
||||
fail(format("Could not generate new bitcoin address:%n%s", newAddress.getErrorMessage()));
|
||||
|
||||
return newAddress.getOutput();
|
||||
} catch (IOException | InterruptedException ex) {
|
||||
|
|
Loading…
Add table
Reference in a new issue