From 15d94551a830069b959358a07deb668cca597eec Mon Sep 17 00:00:00 2001 From: QuickMythril Date: Tue, 1 Feb 2022 15:54:29 -0500 Subject: [PATCH] fix for QORT tx cannot filter by address and display unconfirmed. more info: https://github.com/Qortal/qortal/commit/7aed0354f1e2926baa4257d4fbb2a04d14e195c2 --- qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js index 62967ba7..71585d42 100644 --- a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js +++ b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js @@ -966,7 +966,7 @@ async showWallet(){ }) //fetching the qort transactions const txsQort = await parentEpml.request('apiCall', { - url: `/transactions/search?address=${this.wallets.get('qort').wallet.address}&confirmationStatus=BOTH&reverse=true`, + url: `/transactions/search?address=${this.wallets.get('qort').wallet.address}&confirmationStatus=CONFIRMED&reverse=true`, }) if(this._selectedWallet==coin) this.wallets.get(coin).transactions = txsQort