github.com/number571/tendermint@v0.34.11-gost/proto/tendermint/version/types.proto (about)

     1  syntax = "proto3";
     2  package tendermint.version;
     3  
     4  option go_package = "github.com/number571/tendermint/proto/tendermint/version";
     5  
     6  import "gogoproto/gogo.proto";
     7  
     8  // Consensus captures the consensus rules for processing a block in the blockchain,
     9  // including all blockchain data structures and the rules of the application's
    10  // state transition machine.
    11  message Consensus {
    12    option (gogoproto.equal) = true;
    13  
    14    uint64 block = 1;
    15    uint64 app   = 2;
    16  }