From a63b38f084b9d2d66e32f15d00bbc7976de4d526 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Sun, 27 Nov 2016 00:28:30 +0200 Subject: [PATCH] remove msg sig request spam from log --- jmclient/client_protocol.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/jmclient/client_protocol.py b/jmclient/client_protocol.py index 9e555a8..a0ccc30 100644 --- a/jmclient/client_protocol.py +++ b/jmclient/client_protocol.py @@ -204,7 +204,6 @@ class JMTakerClientProtocol(amp.AMP): @commands.JMRequestMsgSigVerify.responder def on_JM_REQUEST_MSGSIG_VERIFY(self, msg, fullmsg, sig, pubkey, nick, hashlen, max_encoded, hostid): - jlog.info("Got a request to verify a signature") verif_result = True if not btc.ecdsa_verify(str(msg), sig, pubkey): jlog.debug("nick signature verification failed, ignoring.") @@ -218,7 +217,6 @@ class JMTakerClientProtocol(amp.AMP): jlog.debug("Nick hash check failed, expected: " + str(nick_unpadded) + ", got: " + str(btc.changebase(nick_pkh_raw, 256, 58))) verif_result = False - jlog.info("Sending a verifcation result: " + str(verif_result)) d = self.callRemote(commands.JMMsgSignatureVerify, verif_result=verif_result, nick=nick,