mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-22 19:39:22 +00:00
fix: token transactions refresh interruption
This commit is contained in:
parent
5016818bae
commit
aac6c0fdb6
1 changed files with 7 additions and 3 deletions
|
@ -507,9 +507,13 @@ class EthTokenWallet extends ChangeNotifier with EthTokenCache {
|
|||
} else if (toAddress == addressString) {
|
||||
isIncoming = true;
|
||||
} else {
|
||||
throw Exception("Unknown token transaction found for "
|
||||
"${ethWallet.walletName} ${ethWallet.walletId}: "
|
||||
"${tuple.item1.toString()}");
|
||||
// ignore for now I guess since anything here is not reflected in
|
||||
// balance anyways
|
||||
continue;
|
||||
|
||||
// throw Exception("Unknown token transaction found for "
|
||||
// "${ethWallet.walletName} ${ethWallet.walletId}: "
|
||||
// "${tuple.item1.toString()}");
|
||||
}
|
||||
|
||||
final txn = Transaction(
|
||||
|
|
Loading…
Reference in a new issue