9 lines
135 B
Protocol Buffer
9 lines
135 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package btc.block_meta.v1;
|
|
|
|
message BlockMeta {
|
|
uint64 number = 1;
|
|
string hash = 2;
|
|
string parent_hash = 3;
|
|
} |