Merge pull request #47 from rex4539/fix-typo

Fix typo
This commit is contained in:
adityapk00 2020-04-04 09:50:21 -07:00 committed by GitHub
commit 8f0b964fdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ export default class RPC {
return transaction; return transaction;
}); });
// There's an issue where there are "blank" sent transactions transactions, filter them out. // There's an issue where there are "blank" sent transactions, filter them out.
txlist = txlist.filter(tx => !(tx.type === 'sent' && tx.amount < 0 && tx.detailedTxns.length === 0)); txlist = txlist.filter(tx => !(tx.type === 'sent' && tx.amount < 0 && tx.detailedTxns.length === 0));
// Sort the list by confirmations // Sort the list by confirmations