mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-03-13 11:12:32 +00:00
Fix dynamic Trade fee
This commit is contained in:
parent
3320d2f913
commit
866eccda80
@ -3747,7 +3747,7 @@ class TradeBotPortal extends LitElement {
|
||||
}
|
||||
return Promise.reject(response)
|
||||
}).then((json) => {
|
||||
this.listedCoins.get("QORTAL").tradeFee = (Number(json + 100000) / 1e8).toFixed(2)
|
||||
this.listedCoins.get("QORTAL").tradeFee = (Number(json) + 100000) / 1e8
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -3032,7 +3032,7 @@ class TradePortal extends LitElement {
|
||||
}
|
||||
return Promise.reject(response)
|
||||
}).then((json) => {
|
||||
this.listedCoins.get("QORTAL").tradeFee = (Number(json + 100000) / 1e8).toFixed(2)
|
||||
this.listedCoins.get("QORTAL").tradeFee = (Number(json) + 100000) / 1e8
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user