mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Add fiat conversion also for trade amount when making a trade to sell btc
This commit is contained in:
parent
a1d63e35d7
commit
ea8653ef87
1 changed files with 4 additions and 1 deletions
|
@ -992,7 +992,10 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
|
|||
}
|
||||
|
||||
public String getTradeAmount() {
|
||||
return btcFormatter.formatCoinWithCode(dataModel.getAmount().get());
|
||||
return FeeUtil.getTradeFeeWithFiatEquivalent(offerUtil,
|
||||
dataModel.getAmount().get(),
|
||||
true,
|
||||
btcFormatter);
|
||||
}
|
||||
|
||||
public String getSecurityDepositLabel() {
|
||||
|
|
Loading…
Add table
Reference in a new issue