修改 /opt/firstChaincode 文件下的 go.mod, 指定版本,添加如下内容: require ( github.com/golang/protobuf v1.3.2 github.com/hyperledger/fabric-chaincode-go v0.0.0-20200424173110-d7076418f212 github.com/hyperledger/fabric-contract-api-go v1.1.0 github.com/hyperledger/fabric-protos-go v0.0.0-20200424173316-dd554ba3746e github.com/stretchr/testify v1.5.1 golang.org/x/tools v0.1.0 // indirect )
时间: 2023-06-20 09:05:44 浏览: 282
一种新颖的1/4波片制作方法
您需要在终端中进入 /opt/firstChaincode 目录,然后使用编辑器打开 go.mod 文件,添加如下内容:
```
require (
github.com/golang/protobuf v1.3.2
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200424173110-d7076418f212
github.com/hyperledger/fabric-contract-api-go v1.1.0
github.com/hyperledger/fabric-protos-go v0.0.0-20200424173316-dd554ba3746e
github.com/stretchr/testify v1.5.1
golang.org/x/tools v0.1.0 // indirect
)
```
然后保存文件并退出编辑器即可。
阅读全文