Skip to content

Commit

Permalink
fix the log
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel committed Aug 22, 2024
1 parent 39cc826 commit 864a30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/genesis/ssv/validator/msgqueue_consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (v *Validator) ConsumeQueue(logger *zap.Logger, msgID genesisspectypes.Mess
if sm.Message.MsgType != genesisspecqbft.PrepareMsgType && sm.Message.MsgType != genesisspecqbft.CommitMsgType {
return true
}
logger.Debug("❗ dropping message because no proposal was accepted for the current round", fields.MessageID(spectypes.MessageID(m.MsgID)), fields.MessageType(spectypes.MsgType(m.MsgType)), fields.Height(specqbft.Height(sm.Message.Height)), fields.Round(specqbft.Round(sm.Message.Round)), fields.MessageType(spectypes.MsgType(sm.Message.MsgType)))
logger.Debug("❗ dropping message because no proposal was accepted for the current round", fields.MessageID(spectypes.MessageID(m.MsgID)), fields.MessageType(spectypes.MsgType(m.MsgType)), fields.Height(specqbft.Height(sm.Message.Height)), fields.Round(specqbft.Round(sm.Message.Round)), zap.Any("sign_msg_type", sm.Message.MsgType))
return false
}
}
Expand Down

0 comments on commit 864a30b

Please sign in to comment.