github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/protobuf/storage.proto (about)

     1  syntax = 'proto3';
     2  
     3  option go_package = "github.com/hyperledger/burrow/storage";
     4  
     5  import "gogoproto/gogo.proto";
     6  
     7  package storage;
     8  
     9  option (gogoproto.stable_marshaler_all) = true;
    10  option (gogoproto.marshaler_all) = true;
    11  option (gogoproto.unmarshaler_all) = true;
    12  option (gogoproto.sizer_all) = true;
    13  option (gogoproto.goproto_registration) = true;
    14  option (gogoproto.messagename_all) = true;
    15  
    16  // This is the object that is stored in the leaves of the commitsTree - it captures the sub-tree hashes so that the
    17  // commitsTree's hash becomes a mixture of the hashes of all the sub-trees.
    18  message CommitID {
    19      option (gogoproto.goproto_stringer) = false;
    20      int64 Version = 1;
    21      bytes Hash = 2;
    22  }