4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Add fee for AT execution

This commit is contained in:
QuickMythril 2023-08-12 07:56:30 -04:00
parent 85883d4166
commit 3320d2f913
2 changed files with 2 additions and 2 deletions

View File

@ -3747,7 +3747,7 @@ class TradeBotPortal extends LitElement {
}
return Promise.reject(response)
}).then((json) => {
this.listedCoins.get("QORTAL").tradeFee = (Number(json) / 1e8).toFixed(2)
this.listedCoins.get("QORTAL").tradeFee = (Number(json + 100000) / 1e8).toFixed(2)
})
}

View File

@ -3032,7 +3032,7 @@ class TradePortal extends LitElement {
}
return Promise.reject(response)
}).then((json) => {
this.listedCoins.get("QORTAL").tradeFee = (Number(json) / 1e8).toFixed(2)
this.listedCoins.get("QORTAL").tradeFee = (Number(json + 100000) / 1e8).toFixed(2)
})
}