This commit is contained in:
Nex 2020-04-05 11:40:37 +08:00
parent 9f8985cd33
commit cb5dd94140

View File

@ -33,13 +33,13 @@ message Transaction {
} }
message Block { message Block {
bytes hash = 1; // `null` bytes hash = 1; // `null`
repeated bytes parent_hashes = 2; // repeated bytes parent_hashes = 2; //
repeated bytes witnesses = 3; // repeated bytes witnesses = 3; //
int64 timestamp = 4; // UNIX int64 timestamp = 4; // UNIX
uint64 size = 5; // uint64 size = 5; //
uint32 transaction_count = 6; // uint32 transaction_count = 6; //
bytes transactions_root = 7; // bytes transactions_root = 7; //
repeated Transaction transactions = 8; // repeated Transaction transactions = 8; //
repeated bytes transaction_hashes = 9; // 20 repeated bytes transaction_hashes = 9; // 20
} }