mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 03:49: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) {
|
} else if (toAddress == addressString) {
|
||||||
isIncoming = true;
|
isIncoming = true;
|
||||||
} else {
|
} else {
|
||||||
throw Exception("Unknown token transaction found for "
|
// ignore for now I guess since anything here is not reflected in
|
||||||
"${ethWallet.walletName} ${ethWallet.walletId}: "
|
// balance anyways
|
||||||
"${tuple.item1.toString()}");
|
continue;
|
||||||
|
|
||||||
|
// throw Exception("Unknown token transaction found for "
|
||||||
|
// "${ethWallet.walletName} ${ethWallet.walletId}: "
|
||||||
|
// "${tuple.item1.toString()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
final txn = Transaction(
|
final txn = Transaction(
|
||||||
|
|
Loading…
Reference in a new issue