diff --git a/core/src/main/java/bisq/core/btc/wallet/BsqWalletService.java b/core/src/main/java/bisq/core/btc/wallet/BsqWalletService.java index c2f5d039da4..dda38b56edc 100644 --- a/core/src/main/java/bisq/core/btc/wallet/BsqWalletService.java +++ b/core/src/main/java/bisq/core/btc/wallet/BsqWalletService.java @@ -679,7 +679,7 @@ private Transaction getPreparedTxWithMandatoryBsqChangeOutput(Coin fee) throws I log.warn("We increased required input as change output was zero or dust: New change value={}", change); String info = "Available BSQ balance=" + coinSelection.valueGathered.value / 100 + " BSQ. " + "Intended fee to burn=" + fee.value / 100 + " BSQ. " + - "Please increase your balance to at least " + (coinSelection.valueGathered.value + minDustThreshold.value) / 100 + " BSQ."; + "Please increase your balance to at least " + (fee.value + minDustThreshold.value) / 100 + " BSQ."; checkArgument(coinSelection.valueGathered.compareTo(fee) > 0, "This transaction require a change output of at least " + minDustThreshold.value / 100 + " BSQ (dust limit). " + info);