diff --git a/plugins/plugins/core/wallet/wallet-app.src.js b/plugins/plugins/core/wallet/wallet-app.src.js index d2fc024f..c3a53588 100644 --- a/plugins/plugins/core/wallet/wallet-app.src.js +++ b/plugins/plugins/core/wallet/wallet-app.src.js @@ -2311,7 +2311,7 @@ class MultiWallet extends LitElement { ${translate("walletpage.wchange6")} : this.myTabChanged(0)}>PAYMENT - this.myTabChanged(1)}>ARBITARY + this.myTabChanged(1)}>ARBITRARY this.myTabChanged(2)}>AT this.myTabChanged(3)}>GROUP this.myTabChanged(4)}>NAME @@ -4250,7 +4250,7 @@ class MultiWallet extends LitElement { this.shadowRoot.getElementById('type').selected = false this.shadowRoot.getElementById('payment-tab').selected = true - this.shadowRoot.getElementById('arbitary-tab').selected = false + this.shadowRoot.getElementById('arbitrary-tab').selected = false this.shadowRoot.getElementById('at-tab').selected = false this.shadowRoot.getElementById('group-tab').selected = false this.shadowRoot.getElementById('name-tab').selected = false @@ -4339,14 +4339,14 @@ class MultiWallet extends LitElement { &txType=PAYMENT ` }) - const arbitaryTxsQort = await parentEpml.request('apiCall', { + const arbitraryTxsQort = await parentEpml.request('apiCall', { url: `/transactions/search?address=${this.wallets.get('qort').wallet.address}&confirmationStatus=CONFIRMED&reverse=true &limit=${this.searchLimit} &offset=${this.searchOffset} &txType=ARBITRARY ` }) - const pendingArbitaryTxsQort = await parentEpml.request('apiCall', { + const pendingArbitraryTxsQort = await parentEpml.request('apiCall', { url: `/transactions/unconfirmed?creator=${this.wallets.get('qort').wallet.base58PublicKey}&reverse=true &limit=${this.searchLimit} &offset=${this.searchOffset} @@ -4503,7 +4503,7 @@ class MultiWallet extends LitElement { if (this.visitedTab === 0) { this.wallets.get(coin).transactions = pendingPaymentTxsQort.concat(paymentTxsQort) } else if (this.visitedTab === 1) { - this.wallets.get(coin).transactions = pendingArbitaryTxsQort.concat(arbitaryTxsQort) + this.wallets.get(coin).transactions = pendingArbitraryTxsQort.concat(arbitraryTxsQort) } else if (this.visitedTab === 2) { this.wallets.get(coin).transactions = pendingAtTxsQort.concat(atTxsQort) } else if (this.visitedTab === 3) {