From 7062199e23d622d448356072570777d3565c28a7 Mon Sep 17 00:00:00 2001 From: Lukasz Zimnoch Date: Mon, 23 Nov 2020 11:58:28 +0100 Subject: [PATCH] Remove redundant logs about signature submission --- pkg/node/node.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkg/node/node.go b/pkg/node/node.go index c9fda3497..6421bd545 100644 --- a/pkg/node/node.go +++ b/pkg/node/node.go @@ -372,11 +372,6 @@ func (n *Node) publishSignature( // and there are enough confirmations from the chain. // We are fine, leaving. if !isAwaitingSignature && n.confirmSignature(keepAddress, digest) { - logger.Infof( - "signature for keep [%s] already submitted: [%+x]", - keepAddress.String(), - digest, - ) return nil } @@ -404,11 +399,6 @@ func (n *Node) publishSignature( // confirmations from the chain before making a decision about // leaving the submission process. if !isAwaitingSignature && n.confirmSignature(keepAddress, digest) { - logger.Infof( - "signature for keep [%s] already submitted: [%+x]", - keepAddress.String(), - digest, - ) return nil }