我正在尝试在本地测试我的链码,为此我有一个脚本要运行,但是在安装链码(以下代码)时出现错误,指出链码路径不存在?
peer chaincode install -n mycc -v 1.0 -p ./bitbucket.org/Foldername/testBlockchain/folder_name_for_chaincode
在所有示例中,我都看到使用以下命令
peer chaincode -n mycc -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02
我的问题恰恰是我该如何纠正指向链码的路径?
最佳答案
您需要在GOPATH中提供链码,然后才能安装它。只需将bitbucket文件夹添加到GOPATH或将链码移动到$GOPATH/src
即可。
更新
以下命令
peer chaincode install -n mycc -v 1.0 -p ./bitbucket.org/Foldername/testBlockchain/folder_name_for_chaincode
需要替换为
peer chaincode install -n mycc -v 1.0 -p bitbucket.org/Foldername/testBlockchain/folder_name_for_chaincode
关于go - 在HyperLedger Fabric中的对等方上安装Chaincode,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48030138/