Updated on 2026-08-14
This commit is contained in:
parent
ec1b9093ec
commit
ad31bdf58e
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ internal class SendNotificationFactory(
|
|||
val totalAmount = feeAmount + receivedAmount
|
||||
val change = balance - totalAmount
|
||||
val isChangeLowerThanDust = change < dustValue && change != BigDecimal.ZERO
|
||||
val isShowWarning = totalAmount < dustValue || isChangeLowerThanDust
|
||||
val isShowWarning = receivedAmount < dustValue || isChangeLowerThanDust
|
||||
if (isShowWarning) {
|
||||
add(
|
||||
SendNotification.Error.MinimumAmountError(dustValue.toPlainString()),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue