Commit bd39e5e0 authored by suyanlong's avatar suyanlong

Fixed unit test bug

parent a022cf95
...@@ -9,7 +9,7 @@ message IBTPX { ...@@ -9,7 +9,7 @@ message IBTPX {
IBTP ibtp = 1; IBTP ibtp = 1;
// route mode // route mode
string mode = 2; // dirct、relay string mode = 2; // dirct、relay
repeated string routeSign = 3; //路由节点签名路径,主要是对data hash签名,主要是相互校验。sidecar节点之间相互校验。sidecar 节点需要注册到中继连上。还可以过滤已经发送过的交易、也可以作恶惩罚。 repeated string routeSign = 3; //路由节点签名路径,主要是对data hash签名,主要是相互校验。sidecar节点之间相互校验。sidecar 节点需要注册到中继连上。还可以过滤已经发送过的交易、也可以作恶惩罚。使用bls签名算法,聚合签名。
string routeMethod = 4; // single、multicast、broadcast、 string routeMethod = 4; // single、multicast、broadcast、
repeated string routeMethodArg = 5; //路由节点,默认第一个节点。或者转发消息。 repeated string routeMethodArg = 5; //路由节点,默认第一个节点。或者转发消息。
bool IsValid = 6; bool IsValid = 6;
......
...@@ -53,7 +53,7 @@ func ethSignOneTest(t *testing.T, secHex string, msgHex string, sigHex string) { ...@@ -53,7 +53,7 @@ func ethSignOneTest(t *testing.T, secHex string, msgHex string, sigHex string) {
} }
} }
func blsAggregateVerifyNoCheckTest(t *testing.T) { func TestBlsAggregateVerifyNoCheck(t *testing.T) {
nTbl := []int{1, 2, 15, 16, 17, 50} nTbl := []int{1, 2, 15, 16, 17, 50}
for i := 0; i < len(nTbl); i++ { for i := 0; i < len(nTbl); i++ {
blsAggregateVerifyNoCheckTestOne(t, nTbl[i]) blsAggregateVerifyNoCheckTestOne(t, nTbl[i])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment