Fix test fail() msg

This commit is contained in:
ghubstan 2020-08-13 14:19:02 -03:00
parent 176f0b2ad8
commit 9637cc0943
No known key found for this signature in database
GPG key ID: E35592D6800A861E

View file

@ -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) {