我开始使用 Java 开发 Hyperledger Fabric,为此,我正在关注构建你的第一个网络教程。我正在尝试在对等方上安装链代码,但我一直遇到同样的问题,不知道如何解决。我想这将是链码地址的问题,但我无法真正纠正它。我在这里也粘贴了我获得教程的网页。https://hyperledger-fabric.readthedocs.io/en/latest/build_network.html使用的命令:peer chaincode install -n mycc -v 1.0 -l java -p /opt/gopath/src/github.com/hyperledger/fabric-samples/chaincode/abstore/java/错误:panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0xea273b]完整的结果:checkChaincodeCmdParams -> INFO 001 Using default escc2019-03-08 09:23:44.382 UTC [chaincodeCmd] checkChaincodeCmdParams -> INFO 002 Using default vsccpanic: runtime error: invalid memory address or nil pointer dereference[signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0xea273b]goroutine 1 [running]:github.com/hyperledger/fabric/core/container/util.WriteFolderToTarPackage.func1(0x7ffd07ebd54a, 0x48, 0x0, 0x0, 0x1874100, 0xc00014be30, 0x60, 0x1691f40) /opt/gopath/src/github.com/hyperledger/fabric/core/container/util/writer.go:64 +0xcbpath/filepath.Walk(0x7ffd07ebd54a, 0x48, 0xc000162240, 0x2, 0x3) /opt/go/src/path/filepath/path.go:402 +0x6agithub.com/hyperledger/fabric/core/container/util.WriteFolderToTarPackage(0xc00024c700, 0x7ffd07ebd54a, 0x48, 0xc0003f5858, 0x3, 0x3, 0x0, 0xc000135230, 0xc00024c700, 0x0) /opt/gopath/src/github.com/hyperledger/fabric/core/container/util/writer.go:136 +0x241github.com/hyperledger/fabric/core/container/util.WriteJavaProjectToPackage(0xc00024c700, 0x7ffd07ebd54a, 0x48, 0xc0003f5940, 0x1)
1 回答
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
他们已经使用新的 workin 命令更新了文档。
peer chaincode install -n mycc -v 1.0 -l java -p /opt/gopath/src/github.com/chaincode/chaincode_example02/java/
添加回答
举报
0/150
提交
取消