Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Remove redundant logs about signature submission
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-zimnoch committed Nov 23, 2020
1 parent 73cc0ff commit 7062199
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit 7062199

Please sign in to comment.