added extra logging

This commit is contained in:
julian 2023-10-13 16:05:26 -06:00
parent 7616e70923
commit 85e248f2e1

View file

@ -186,7 +186,8 @@ mixin FusionWalletInterface {
);
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");
}
}