mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-19 14:34:17 +00:00
evidence: fix usage of time field in abci evidence (#5201)
* fix usage of time in abci evidence * update changelong and upgrading * add test cases
This commit is contained in:
@@ -351,8 +351,11 @@ message VoteInfo {
|
||||
|
||||
message Evidence {
|
||||
string type = 1;
|
||||
// The offending validator
|
||||
Validator validator = 2 [(gogoproto.nullable) = false];
|
||||
// The height when the offense occurred
|
||||
int64 height = 3;
|
||||
// The corresponding time where the offense occurred
|
||||
google.protobuf.Timestamp time = 4 [
|
||||
(gogoproto.nullable) = false,
|
||||
(gogoproto.stdtime) = true
|
||||
|
||||
Reference in New Issue
Block a user