diff --git a/proto/tendermint/blockchain/message.go b/proto/tendermint/blockchain/message.go index 2832999d0..65f074bb4 100644 --- a/proto/tendermint/blockchain/message.go +++ b/proto/tendermint/blockchain/message.go @@ -85,7 +85,10 @@ func (m *Message) Validate() error { return errors.New("negative Height") } if m.GetStatusResponse().Base > m.GetStatusResponse().Height { - return fmt.Errorf("base %v cannot be greater than height %v", m.GetStatusResponse().Base, m.GetStatusResponse().Height) + return fmt.Errorf( + "base %v cannot be greater than height %v", + m.GetStatusResponse().Base, m.GetStatusResponse().Height, + ) } case *Message_StatusRequest: