mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Notice when the security deposit is the minimum possible
This commit is contained in:
parent
0218803650
commit
a1d63e35d7
2 changed files with 2 additions and 2 deletions
|
@ -1011,7 +1011,7 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
|
||||||
dataModel.getAmount().get(),
|
dataModel.getAmount().get(),
|
||||||
true,
|
true,
|
||||||
btcFormatter,
|
btcFormatter,
|
||||||
Coin.ZERO
|
Restrictions.getMinBuyerSecurityDepositAsCoin()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -696,7 +696,7 @@ class TakeOfferViewModel extends ActivatableWithDataModel<TakeOfferDataModel> im
|
||||||
dataModel.getAmount().get(),
|
dataModel.getAmount().get(),
|
||||||
true,
|
true,
|
||||||
btcFormatter,
|
btcFormatter,
|
||||||
Coin.ZERO
|
Restrictions.getMinBuyerSecurityDepositAsCoin()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue