2021年1月21日
摘要: hyperledger fabric 2.3 今天把chaincode相关的文件夹都删掉了,剩下这些,cli敲下./network.sh up运行正常,说明只需修改这些config文件和shell文件即可达到搭建network的目的 阅读全文
posted @ 2021-01-21 19:51 SilverhandFan 阅读(62) 评论(0) 推荐(0) 编辑
  2021年1月20日
摘要: network.sh是fabric v2.x的fabric-samples的test-network的脚本语言文件 一.networkUp <1>networkUP()函数,先后调用了checkPrereqs函数、createOrgs函数和createConsortium函数 tips: -d fi 阅读全文
posted @ 2021-01-20 09:56 SilverhandFan 阅读(498) 评论(0) 推荐(0) 编辑
  2021年1月6日
摘要: shim包主要就有两个方法,一般用作函数的返回值 shim.Error("string:报错信息") shim.Success(nil) shim.Success([]byte("报正确信息")) 它们的类型都是pb.Response ChaincodeStubInterface接口: 使用shim 阅读全文
posted @ 2021-01-06 17:38 SilverhandFan 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 原文链接: https://hyperledger-fabric.readthedocs.io/en/latest/peer-chaincode-devmode.html 搭建开发环境 1.从github里clone fabric文件夹到本地 2.cd到fabric文件夹,跑: make order 阅读全文
posted @ 2021-01-06 17:16 SilverhandFan 阅读(419) 评论(0) 推荐(0) 编辑
  2020年12月30日
摘要: 基于hyperledger-fabric 2.3 type Contract: contract类可以被嵌入在一个struct里,便捷地使该struct满足ContractInterface的要求。type contract定义了用来设置或者获取unknown transaction\ before 阅读全文
posted @ 2020-12-30 18:48 SilverhandFan 阅读(269) 评论(0) 推荐(0) 编辑