From d5a8e4b056106494c716038a0daa793165bdf922 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sun, 13 Jul 2025 13:58:09 +0200 Subject: [PATCH] Trace exception on public key load failure --- RNS/Identity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/RNS/Identity.py b/RNS/Identity.py index 7fb2be5..d337260 100644 --- a/RNS/Identity.py +++ b/RNS/Identity.py @@ -639,6 +639,7 @@ class Identity: self.update_hashes() except Exception as e: RNS.log("Error while loading public key, the contained exception was: "+str(e), RNS.LOG_ERROR) + RNS.trace_exception(e) def update_hashes(self): self.hash = Identity.truncated_hash(self.get_public_key())