Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelkrolevets committed Oct 3, 2024
1 parent 8f306df commit 4af67fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/initiator/initiator.go
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ func (c *Initiator) processPongMessage(res wire.PongResult) error {
if err := spec_crypto.VerifyRSA(pub, pongBytes, signedPongMsg.Signature); err != nil {
return fmt.Errorf("operator sent pong with wrong RSA public key %w", err)
}
if pong.Multisig == true {
if pong.Multisig {
if pong.EthClientConnected {
c.Logger.Info("🟢 operator online and healthy: multisig ready 👌 and connected ⛓️", zap.Uint64("ID", pong.ID), zap.String("IP", res.IP), zap.String("Version", string(signedPongMsg.Message.Version)), zap.String("Public key", string(pong.PubKey)))
} else {
Expand Down

0 comments on commit 4af67fa

Please sign in to comment.