如何从两个CA映射证书。超级面料

时间:2017-11-09 08:10:10

标签: hyperledger-fabric

我尝试创建具有两个CA和两个对等的超级结构系统。我基于fabric-samples中的基本网络构建它。

这是我得到的错误 enter image description here

我不知道我应该把钥匙放在哪里。现在他们在Desktop / fabric-samples / basic-network / crypto-config

这是我的docker-compose

public void process()
{
    int value = 1;
    int maxItterations = 8;
    int[] targetArray = new int[maxItterations];

    for(int index = 0; index < maxItterations; index++)
    {
        // Store current value
        targetArray[index] = value;

        // Duplicate the value for the next itteration
        value = value * 2;
    }
}

0 个答案:

没有答案