feat: add Block.creator_signature and Block.witness_signatures

This commit is contained in:
Nex Zhu
2022-11-14 01:22:04 +08:00
parent 94743e9a17
commit ae35d605b1
7 changed files with 232 additions and 143 deletions

View File

@@ -42,6 +42,8 @@ message Block {
bytes transactions_root = 9; // 区块的事务默克尔树根
repeated Transaction transactions = 10; // 事务对象的数组,或为空
repeated bytes transaction_hashes = 11; // 20字节的事务哈希的数组或为空
bytes creator_signature = 12; // 产块者签名
bytes witness_signatures = 13; // 见证者签名
}
message Contract {