
hyper ledger
小吕孩儿
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
fabric 2.0 test-network 链码部署踩的坑 github.com/golang/protobuf@v1.3.2: is explicitly required in go.mod
执行命令 ./network.sh deployCC -ccn basic -ccp ../asset-transfer-basic/chaincode-go -ccl go 报错信息 + res=1 Error: chaincode install failed with status: 500 - failed to invoke backing implementation of 'InstallChaincode': could not build chaincode: docker build原创 2021-06-03 14:27:15 · 2696 阅读 · 1 评论 -
fabric交易流程
ClientA 发起交易,构建交易提案(tx proposal),并对提案进行签名 背书节点进行验证并模拟执行交易 that the transaction proposal is well formed it has not been submitted already in the past (replay-attack protection) the signature is valid (using the MSP) that the submitter (Client A, in the ex原创 2020-06-15 13:58:28 · 765 阅读 · 0 评论 -
docker权限问题,ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running
ERROR: Couldn’t connect to Docker daemon at http+docker://localunixsocket - is it running? 出现这个问题是因为当前用户权限的问题,只要将当前用户加入docker组就可以啦~ 解决方案: 1、如果还没有 docker group 就添加一个 sudo groupadd docker 2、将用户加入该 group...原创 2018-10-26 10:33:22 · 6477 阅读 · 0 评论