|
@ -2936,11 +2936,14 @@ func (m *VoteInfo) GetSignedLastBlock() bool { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type Evidence struct { |
|
|
type Evidence struct { |
|
|
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` |
|
|
|
|
|
Validator Validator `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator"` |
|
|
|
|
|
Height int64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"` |
|
|
|
|
|
Time time.Time `protobuf:"bytes,4,opt,name=time,proto3,stdtime" json:"time"` |
|
|
|
|
|
TotalVotingPower int64 `protobuf:"varint,5,opt,name=total_voting_power,json=totalVotingPower,proto3" json:"total_voting_power,omitempty"` |
|
|
|
|
|
|
|
|
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` |
|
|
|
|
|
Validator Validator `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator"` |
|
|
|
|
|
Height int64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"` |
|
|
|
|
|
Time time.Time `protobuf:"bytes,4,opt,name=time,proto3,stdtime" json:"time"` |
|
|
|
|
|
// Total voting power of the validator set in case the ABCI application does
|
|
|
|
|
|
// not store historical validators.
|
|
|
|
|
|
// https://github.com/tendermint/tendermint/issues/4581
|
|
|
|
|
|
TotalVotingPower int64 `protobuf:"varint,5,opt,name=total_voting_power,json=totalVotingPower,proto3" json:"total_voting_power,omitempty"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (m *Evidence) Reset() { *m = Evidence{} } |
|
|
func (m *Evidence) Reset() { *m = Evidence{} } |
|
|