通道功能V1_3是必需的,但不受支持:在Hyperledger Fabric中建立我的第一个网络



在OSX上启动我的第一个Hyperledger网络。

我使用脚本安装了示例文件

curl -sSL http://bitlyURLThatStackoverflow won't let me us | bash -s 1.2.1

冉冉��

./byfn.sh up -c mychannel -s couchdb

启动示例网络并收到错误

Error: failed to create deliver client: orderer client failed to connect to orderer.example.com:7050: failed to create new connection: context deadline exceeded

从 orderer.example.com:7050 中提取原木并得到

config requires unsupported channel capabilities: Channel capability V1_3 is required but not supported: Channel capability V1_3 is required but not supported

关于从哪里开始调试的任何建议

如果您刚刚入门,您可能希望迁移到 1.3.0,因为它现已正式发布。

编辑:您现在应该能够只使用1.2.1并且事情应该可以正常工作。 我为织物样品推送了一个新的v1.2.1标签。 (请阅读下面的解释(。

为了回答您的问题,脚本的工作方式是,它假定结构和结构示例存储库都具有与指定下载的版本匹配的标记。 事实证明,织物样本有1.2.1标签,所以如果你自己克隆它,你最终会得到默认值(即1.3.0(。 如果要使用1.2.1映像,则只需下载它们,然后在结构样本克隆中运行git checkout v1.2.0

最新更新