Merge pull request #2272 from BlueWallet/fix-1966

FIX: Transaction details not shown when 'display in wallets list' not…
This commit is contained in:
GLaDOS 2020-12-13 12:30:59 +00:00 committed by GitHub
commit b9e6cd4481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ const TransactionsDetails = () => {
let foundTx = {};
let from = [];
let to = [];
for (const tx of getTransactions()) {
for (const tx of getTransactions(null, Infinity, true)) {
if (tx.hash === hash) {
foundTx = tx;
for (const input of foundTx.inputs) {

View File

@ -87,7 +87,7 @@ const TransactionsStatus = () => {
}
}
for (const tx of getTransactions()) {
for (const tx of getTransactions(null, Infinity, true)) {
if (tx.hash === hash) {
setTX(tx);
break;