mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 14:42:37 +01:00
Prevent transaction already when there is a zero BTC output
This commit is contained in:
parent
dda54f8b64
commit
e5d28b67c1
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ public class BsqSendView extends ActivatableView<GridPane, Void> implements BsqB
|
|||
Transaction signedTx = bsqWalletService.signTx(txWithBtcFee);
|
||||
Coin miningFee = signedTx.getFee();
|
||||
|
||||
if (miningFee.getValue() > receiverAmount.getValue())
|
||||
if (miningFee.getValue() >= receiverAmount.getValue())
|
||||
GUIUtil.showWantToBurnBTCPopup(miningFee, receiverAmount, btcFormatter);
|
||||
else {
|
||||
int txSize = signedTx.bitcoinSerialize().length;
|
||||
|
|
Loading…
Add table
Reference in a new issue