mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
Merge pull request #2272 from BlueWallet/fix-1966
FIX: Transaction details not shown when 'display in wallets list' not…
This commit is contained in:
commit
b9e6cd4481
@ -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) {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user