You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
515 B

  1. syntax = "proto3";
  2. package tendermint.proto.evidence;
  3. option go_package = "github.com/tendermint/tendermint/proto/evidence";
  4. import "third_party/proto/gogoproto/gogo.proto";
  5. import "proto/types/evidence.proto";
  6. message List {
  7. repeated tendermint.proto.types.Evidence evidence = 1 [(gogoproto.nullable) = false];
  8. }
  9. message Info {
  10. bool committed = 1;
  11. int64 priority = 2;
  12. tendermint.proto.types.Evidence evidence = 3 [(gogoproto.nullable) = false];
  13. }