Hyperledger Fabric 中的多主机连接

Multiple Hosts connection in Hyperledger Fabric

我可以使用此 link https://hyperledger.github.io/composer/latest/tutorials/deploy-to-fabric-multi-org

连接到单个主机中的多个组织

为了使用多个主机连接多个组织,我遵循以下 link: https://medium.com/1950labs/publish-a-business-network-in-multi-host-hyperledger-fabric-a5ad2015a487

启动业务网络时出现此错误

Error: Error trying to start business network. Error: No valid responses from any peers.
Response from attempted peer comms was an error:
Error: 2 UNKNOWN: chaincode error (status: 500, message: is not a valid endorsement system chaincode)
Response from attempted peer comms was an error: Error: 2 UNKNOWN: chaincode error (status: 500, message: is not a valid endorsement system chaincode) Command failed

我尝试检查 docker 容器日志我得到了一些错误:

2018-11-23 06:41:47.029 UTC [endorser] ProcessProposal -> ERRO 043 [mychannel][2a3a414e] simulateProposal() resulted in chaincode name:"lscc" response status 500 for txid: 2a3a414e85ab4e1ff0b7b2587147bb496e8586a6475685f6777bc1cd5f89f1a0**

我该如何解决这个问题?有什么建议吗?

-TIA

错误信息Error: 2 UNKNOWN: chaincode error (status: 500, message: is not a valid endorsement system chaincode) 意味着您正在尝试对结构 1.1 网络使用 composer 0.20。 Composer 0.20 仅适用于 Fabric 1.2、1.3 网络,Composer 0.19 仅适用于 fabric 1.1 网络。因此,您需要为您的 fabric 网络更改为正确的 composer 版本,或者您需要更改您的 fabric 网络的版本以匹配您正在使用的 composer 版本。