Skip to content

Commit

Permalink
Remove white space in console msg
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Apr 15, 2021
1 parent c4c07d0 commit 40e76fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/main/java/bisq/cli/CliMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@ public static void run(String[] args) {
verifyStringIsValidDecimal(OPT_AMOUNT, amount);

var bsqWasSent = client.verifyBsqSentToAddress(address, amount);
out.printf("%s bsq has %s been sent to address %s%n",
out.printf("%s bsq %s sent to address %s%n",
amount,
bsqWasSent ? "" : "not",
bsqWasSent ? "has been" : "has not been",
address);
return;
}
Expand Down

0 comments on commit 40e76fb

Please sign in to comment.