【发布时间】:2020-08-02 10:36:34
【问题描述】:
我无法在 hyperledger faric 中运行我的 ibm evote 区块链应用程序。我在 ubuntu 16 的 VS Code (v1.39) 中使用 IBM Evote。当我启动本地结构(1 个组织本地结构)时,我面临以上错误。 以下是我的 local_fabric_connection.json 文件代码
{
"name": "local_fabric",
"version": "1.0.0",
"client": {
"organization": "Org1",
"connection": {
"timeout": {
"peer": {
"endorser": "300"
},
"orderer": "300"
}
}
},
"organizations": {
"Org1": {
"mspid": "Org1MSP",
"peers": [
"peer0.org1.example.com"
],
"certificateAuthorities": [
"ca.org1.example.com"
]
}
},
"peers": {
"peer0.org1.example.com": {
"url": "grpc://localhost:17051"
}
},
"certificateAuthorities": {
"ca.org1.example.com": {
"url": "http://localhost:17054",
"caName": "ca.org1.example.com"
}
}
}
【问题讨论】:
标签: visual-studio-code hyperledger-fabric blockchain ibm-blockchain