github.com/Finschia/finschia-sdk@v0.49.1/proto/cosmos/evidence/v1beta1/evidence.proto (about)

     1  syntax = "proto3";
     2  package cosmos.evidence.v1beta1;
     3  
     4  option go_package            = "github.com/Finschia/finschia-sdk/x/evidence/types";
     5  option (gogoproto.equal_all) = true;
     6  
     7  import "gogoproto/gogo.proto";
     8  import "google/protobuf/timestamp.proto";
     9  
    10  // Equivocation implements the Evidence interface and defines evidence of double
    11  // signing misbehavior.
    12  message Equivocation {
    13    option (gogoproto.goproto_stringer) = false;
    14    option (gogoproto.goproto_getters)  = false;
    15    option (gogoproto.equal)            = false;
    16  
    17    int64                     height            = 1;
    18    google.protobuf.Timestamp time              = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true];
    19    int64                     power             = 3;
    20    string                    consensus_address = 4 [(gogoproto.moretags) = "yaml:\"consensus_address\""];
    21  }