Remove white space in console msg

This commit is contained in:
ghubstan 2021-04-15 14:57:44 -03:00
parent c4c07d0f06
commit 40e76fb4ee
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -276,9 +276,9 @@ public class CliMain {
verifyStringIsValidDecimal(OPT_AMOUNT, amount); verifyStringIsValidDecimal(OPT_AMOUNT, amount);
var bsqWasSent = client.verifyBsqSentToAddress(address, 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, amount,
bsqWasSent ? "" : "not", bsqWasSent ? "has been" : "has not been",
address); address);
return; return;
} }