mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
added extra logging
This commit is contained in:
parent
7616e70923
commit
85e248f2e1
1 changed files with 2 additions and 1 deletions
|
@ -186,7 +186,8 @@ mixin FusionWalletInterface {
|
||||||
);
|
);
|
||||||
|
|
||||||
return node.privateKey!;
|
return node.privateKey!;
|
||||||
} catch (_) {
|
} catch (e, s) {
|
||||||
|
Logging.instance.log("$e\n$s", level: LogLevel.Fatal);
|
||||||
throw Exception("Derivation path for pubkey=$pubKey could not be found");
|
throw Exception("Derivation path for pubkey=$pubKey could not be found");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue