使用fabric-sdk-go调用fabric时的问题及解决
时间:2023-07-21
1.实例化链码时报错:failed to get discovery service: could not get chConfig cache reference: QueryBlockConfig failed: no channel peers configured for channel [mychannel] 这是由于fabric-sdk-go的配置文件中通道名与创建通道不一致造成的,将配置文件中channels配置的下一级配置名称改成对应通道名(我这边是改为mychannel)就不会出现这个错误. 2.failed to create channel client: event service creation failed: could not get chConfig cache reference: QueryBlockConfig failed: queryChaincode failed: Transaction processing for endorser [localhost:8051]: gRPC Transport Status Code: (2) Unknown、Description: access denied: channel [mychannel] creator org [Org1MSP] 这也是由于fabric-sdk-go配置不匹配引起的.一种解决方法是将配置文件中channels/# 通道名/peers下的配置中,注释掉与localhost:8051有关的部分. 另一种解决方法是将localhost:8051对应的节点加入相应的通道,也不会报这个错. 3、如果一个组织且一个通道内的两个节点均安装了链码,那么只需要在一个节点实例化链码,就可以在两个节点调用链码.在未实例化链码的节点中调用链码时,会自动创建对应的链码容器
相关推荐