From 4ca1f0309dd9430799ce824c7004a3b6e4e7b3ff Mon Sep 17 00:00:00 2001 From: Nex Zhu <4370605+NexZhu@users.noreply.github.com> Date: Mon, 14 Nov 2022 03:17:23 +0800 Subject: [PATCH] fix: Block.witness_signatures --- grpc/pb/bdware/bdledger/api/common.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc/pb/bdware/bdledger/api/common.proto b/grpc/pb/bdware/bdledger/api/common.proto index 1b5e447..b533205 100644 --- a/grpc/pb/bdware/bdledger/api/common.proto +++ b/grpc/pb/bdware/bdledger/api/common.proto @@ -43,7 +43,7 @@ message Block { repeated Transaction transactions = 10; // 事务对象的数组,或为空 repeated bytes transaction_hashes = 11; // 20字节的事务哈希的数组,或为空 bytes creator_signature = 12; // 产块者签名 - bytes witness_signatures = 13; // 见证者签名 + repeated bytes witness_signatures = 13; // 见证者签名 } message Contract {