diff --git a/RNS/Link.py b/RNS/Link.py index 151a97d4..ef8630aa 100644 --- a/RNS/Link.py +++ b/RNS/Link.py @@ -95,7 +95,7 @@ def validate_request(owner, data, packet): 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 @@ def prove(self): 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)