mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
ignore bad tx for now and log it
This commit is contained in:
parent
355c247275
commit
0c3735ef41
1 changed files with 5 additions and 1 deletions
|
@ -2200,7 +2200,11 @@ class BitcoinCashWallet extends CoinServiceAPI
|
||||||
// only found outputs owned by this wallet
|
// only found outputs owned by this wallet
|
||||||
type = isar_models.TransactionType.incoming;
|
type = isar_models.TransactionType.incoming;
|
||||||
} else {
|
} else {
|
||||||
throw Exception("Unexpected tx found: $txData");
|
Logging.instance.log(
|
||||||
|
"Unexpected tx found: $txData",
|
||||||
|
level: LogLevel.Error,
|
||||||
|
);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
final tx = TransactionV2(
|
final tx = TransactionV2(
|
||||||
|
|
Loading…
Reference in a new issue