mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
Use toTradeFeeBtc, not toTradeFeeBsq
This commit is contained in:
parent
fd0c4c2794
commit
89c4ab3c61
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class ClosedTradeTableBuilder extends AbstractTradeListBuilder {
|
||||||
var optionalTradeFeeBsq = isBtcSeller.test(t) ? 0L : toTradeFeeBsq.apply(t);
|
var optionalTradeFeeBsq = isBtcSeller.test(t) ? 0L : toTradeFeeBsq.apply(t);
|
||||||
colMixedTradeFee.addRow(optionalTradeFeeBsq, true);
|
colMixedTradeFee.addRow(optionalTradeFeeBsq, true);
|
||||||
} else if (isTradeFeeBtc.test(t)) {
|
} else if (isTradeFeeBtc.test(t)) {
|
||||||
colMixedTradeFee.addRow(toTradeFeeBsq.apply(t), false);
|
colMixedTradeFee.addRow(toTradeFeeBtc.apply(t), false);
|
||||||
} else {
|
} else {
|
||||||
// V1 trade fee paid in BSQ.
|
// V1 trade fee paid in BSQ.
|
||||||
colMixedTradeFee.addRow(toTradeFeeBsq.apply(t), true);
|
colMixedTradeFee.addRow(toTradeFeeBsq.apply(t), true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue