问题描述:
查询链码时出现以下错误Error: endorsement failure during query. response: status:500 message:"make sure the chaincode mycc has been successfully instantiated and try again: chaincode mycc not found"
原因分析:
可能实例化后查询链码时间间隔太短
解决方案:
实例化后,sleep 5秒就行了
问题描述:
在创建通道过程中出现一个问题就是说通道名称包含非法字符Error: got unexpected status: BAD_REQUEST -- initializing configtx manager failed: bad channel ID: channel ID 'Channelname' contains illegal characters
原因分析:
可能是通道名称有大写字母或符号
解决方案:
通道名称不要有大写字母或符号
问题描述:
在实例化话发现这样的报错Error: could not assemble transaction, err proposal response was not successful, error code 500, msg error starting container: error starting container: API error (404): network gdzce.cn_byfn not found
原因分析:
可能是网络名称有大写字母或符号
解决方案:
网络名称不要有大写字母或符号