Updated on 2026-08-14

This commit is contained in:
Tangem 2020-05-13 21:51:25 +03:00
parent 1679a9f4f2
commit 72f0c98af7

View file

@ -135,6 +135,8 @@ public class BinanceAssetEngine extends CoinEngine {
ctx.setMessage(R.string.general_wallet_empty);
} else if (awaitingConfirmation()) {
ctx.setMessage(R.string.loaded_wallet_message_wait);
} else if (coinData.getBalance() == null || coinData.getBalance().isZero()) {
ctx.setMessage(ctx.getString(R.string.confirm_transaction_error_not_enough_eth_for_fee));
} else {
return true;
}