Notice when the security deposit is the minimum possible

This commit is contained in:
BtcContributor 2021-04-30 17:35:24 +02:00
parent 0218803650
commit a1d63e35d7
No known key found for this signature in database
GPG key ID: DA582457496C7F6D
2 changed files with 2 additions and 2 deletions

View file

@ -1011,7 +1011,7 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
dataModel.getAmount().get(),
true,
btcFormatter,
Coin.ZERO
Restrictions.getMinBuyerSecurityDepositAsCoin()
);
}

View file

@ -696,7 +696,7 @@ class TakeOfferViewModel extends ActivatableWithDataModel<TakeOfferDataModel> im
dataModel.getAmount().get(),
true,
btcFormatter,
Coin.ZERO
Restrictions.getMinBuyerSecurityDepositAsCoin()
);
}