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.

15 lines
573 B

  1. syntax = "proto3";
  2. package tendermint.proto.types;
  3. option go_package = "github.com/tendermint/tendermint/proto/types";
  4. import "third_party/proto/gogoproto/gogo.proto";
  5. import "proto/types/types.proto";
  6. import "proto/types/evidence.proto";
  7. message Block {
  8. Header header = 1 [(gogoproto.nullable) = false];
  9. Data data = 2 [(gogoproto.nullable) = false];
  10. tendermint.proto.types.EvidenceData evidence = 3 [(gogoproto.nullable) = false];
  11. Commit last_commit = 4;
  12. }