mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
add warning
This commit is contained in:
parent
eac4ee54f1
commit
7d8f03dd20
1 changed files with 7 additions and 0 deletions
|
@ -341,6 +341,11 @@ Future<Map<String, dynamic>> isolateRestore(
|
|||
jindexes.add(currentIndex);
|
||||
|
||||
spendTxIds.add(txId);
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
"AES keypair derivation issue for derive path: $derivePath",
|
||||
level: LogLevel.Warning,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
Logging.instance.log(
|
||||
|
@ -4594,6 +4599,8 @@ class FiroWallet extends CoinServiceAPI
|
|||
final response = await cachedElectrumXClient.getUsedCoinSerials(
|
||||
coin: coin,
|
||||
);
|
||||
print("getUsedCoinSerials");
|
||||
print(response);
|
||||
return response;
|
||||
} catch (e, s) {
|
||||
Logging.instance.log("Exception rethrown in firo_wallet.dart: $e\n$s",
|
||||
|
|
Loading…
Reference in a new issue