From eeb424ecee16c6045f11337c551d204081809d58 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 11 Dec 2021 18:33:09 +0100 Subject: [PATCH] Link request debug --- RNS/Link.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RNS/Link.py b/RNS/Link.py index 151a97d..ef8630a 100644 --- a/RNS/Link.py +++ b/RNS/Link.py @@ -95,7 +95,7 @@ class Link: except Exception as e: RNS.log("Validating link request failed", RNS.LOG_VERBOSE) - traceback.print_exc() + RNS.log("exc: "+str(e)) return None else: @@ -216,11 +216,11 @@ class Link: self.had_outbound() # TODO: Remove debug - if packet.sent: + if proof.sent: RNS.log("The LR proof was sent") else: RNS.log("The LR proof was not sent") - + def prove_packet(self, packet): signature = self.sign(packet.packet_hash)