1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-06-01 06:06:59 +00:00

Fix dynamic Trade fee

This commit is contained in:
QuickMythril 2023-08-12 12:54:17 -04:00
parent 3320d2f913
commit 866eccda80
2 changed files with 2 additions and 2 deletions
plugins/plugins/core

@ -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
})
}