mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
logging on possible bad data
This commit is contained in:
parent
a513e90082
commit
eac4ee54f1
1 changed files with 10 additions and 0 deletions
|
@ -342,7 +342,17 @@ Future<Map<String, dynamic>> isolateRestore(
|
|||
|
||||
spendTxIds.add(txId);
|
||||
}
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
"Unexpected coin found: $foundCoin",
|
||||
level: LogLevel.Warning,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
"Coin not found in data with the mint tag: $mintTag",
|
||||
level: LogLevel.Warning,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue