Browse Source

Update DGB/RVN to match master

Added trade fees to new-coins since they were not part of the master branch.
new-dgb-rvn
QuickMythril 2 years ago committed by GitHub
parent
commit
8a380902f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      qortal-ui-plugins/plugins/core/trade-portal/trade-portal.src.js

6
qortal-ui-plugins/plugins/core/trade-portal/trade-portal.src.js

@ -467,7 +467,8 @@ class TradePortal extends LitElement {
myOfferingOrders: [], myOfferingOrders: [],
openTradeOrders: null, openTradeOrders: null,
tradeOffersSocketCounter: 1, tradeOffersSocketCounter: 1,
coinAmount: this.amountString coinAmount: this.amountString,
tradeFee: "~0.0005"
} }
let ravencoin = { let ravencoin = {
@ -482,7 +483,8 @@ class TradePortal extends LitElement {
myOfferingOrders: [], myOfferingOrders: [],
openTradeOrders: null, openTradeOrders: null,
tradeOffersSocketCounter: 1, tradeOffersSocketCounter: 1,
coinAmount: this.amountString coinAmount: this.amountString,
tradeFee: "~0.006"
} }
this.listedCoins = new Map() this.listedCoins = new Map()

Loading…
Cancel
Save