block_index.proto 197 Bytes
Newer Older
wangdawei's avatar
wangdawei committed
1 2 3 4 5 6 7 8 9 10 11
syntax = "proto3";

message BlockDescribe{
  int32 block_id = 1;
  uint32 block_info_size = 2;
  uint32 block_info_offset = 3;
}

message BlockIndex{
  repeated BlockDescribe block_describe = 1;
}