1 Star 0 Fork 0

peter/fabric

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
main.go 374 Bytes
Copy Edit Raw Blame History
Matthew Sykes authored 2018-03-17 00:10 +08:00 . [FAB-8923] Fix example compilation issues
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package main
import (
"fmt"
"github.com/hyperledger/fabric/core/chaincode/shim"
"github.com/hyperledger/fabric/examples/chaincode/go/example03"
)
func main() {
err := shim.Start(new(example03.SimpleChaincode))
if err != nil {
fmt.Printf("Error starting chaincode: %s", err)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.0-rc2

Search