mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +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
|
||||
type = isar_models.TransactionType.incoming;
|
||||
} else {
|
||||
throw Exception("Unexpected tx found: $txData");
|
||||
Logging.instance.log(
|
||||
"Unexpected tx found: $txData",
|
||||
level: LogLevel.Error,
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
final tx = TransactionV2(
|
||||
|
|
Loading…
Reference in a new issue