當前位置: 首頁>>代碼示例>>Golang>>正文


Golang shim.Start函數代碼示例

本文整理匯總了Golang中github.com/hyperledger/fabric/core/chaincode/shim.Start函數的典型用法代碼示例。如果您正苦於以下問題:Golang Start函數的具體用法?Golang Start怎麽用?Golang Start使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Start函數的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: main

func main() {
	err := shim.Start(new(SampleChaincode))

	if err != nil {
		fmt.Printf("Error starting Sample chaincode: %s \n", err)
	}
}
開發者ID:fits,項目名稱:try_samples,代碼行數:7,代碼來源:chaincode_sample1.go

示例2: main

func main() {
	primitives.SetSecurityLevel("SHA3", 256)
	err := shim.Start(new(AssetManagementChaincode))
	if err != nil {
		fmt.Printf("Error starting AssetManagementChaincode: %s", err)
	}
}
開發者ID:hyperledger,項目名稱:fabric,代碼行數:7,代碼來源:asset_management.go

示例3: main

func main() {

	//	primitives.SetSecurityLevel("SHA3", 256)
	err := shim.Start(new(AssetManagementChaincode))
	if err != nil {
		myLogger.Debugf("Error starting AssetManagementChaincode: %s", err)
	}

}
開發者ID:RJAugust,項目名稱:fabric,代碼行數:9,代碼來源:asset_management02.go

示例4: main

func main() {

	c := newCounters()

	c.logger.SetLevel(shim.LogInfo)
	shim.SetLoggingLevel(shim.LogWarning)

	// This is required because we need the lengths (len()) of our arrays to
	// support large (> 2^32) byte arrays.
	c.assert(busy.SizeOfInt() == 8, "The 'counters' chaincode is only supported on platforms where Go integers are 8-byte integers")

	err := shim.Start(c)
	if err != nil {
		c.logger.Criticalf("main : Error starting counters chaincode: %s", err)
		os.Exit(1)
	}
}
開發者ID:cotrone,項目名稱:fabric,代碼行數:17,代碼來源:counters.go

示例5: main

func main() {
	err := shim.Start(new(Attributes2State))
	if err != nil {
		fmt.Printf("Error running Attributes2State chaincode: %s", err)
	}
}
開發者ID:yoshiharay,項目名稱:fabric,代碼行數:6,代碼來源:attributes_to_state.go

示例6: main

func main() {
	err := shim.Start(new(AssetManagementChaincode))
	if err != nil {
		fmt.Printf("Error starting AssetManagementChaincode: %s", err)
	}
}
開發者ID:RicHernandez2,項目名稱:fabric,代碼行數:6,代碼來源:asset_management_with_roles.go

示例7: initChaincode

func initChaincode() {
	err := shim.Start(new(RBACChaincode))
	if err != nil {
		panic(err)
	}
}
開發者ID:yoshiharay,項目名稱:fabric,代碼行數:6,代碼來源:rbac_test.go

示例8: main

func main() {
	err := shim.Start(new(EventSender))
	if err != nil {
		fmt.Printf("Error starting EventSender chaincode: %s", err)
	}
}
開發者ID:yoshiharay,項目名稱:fabric,代碼行數:6,代碼來源:eventsender.go

示例9: main

func main() {
	err := shim.Start(new(PassthruChaincode))
	if err != nil {
		fmt.Printf("Error starting Passthru chaincode: %s", err)
	}
}
開發者ID:hyperledger,項目名稱:fabric,代碼行數:6,代碼來源:passthru.go

示例10: initAssetManagementChaincode

func initAssetManagementChaincode() {
	err := shim.Start(new(AssetManagementChaincode))
	if err != nil {
		panic(err)
	}
}
開發者ID:yoshiharay,項目名稱:fabric,代碼行數:6,代碼來源:asset_management_with_roles_test.go

示例11: main

func main() {
	err := shim.Start(new(AuthorizableCounterChaincode))
	if err != nil {
		fmt.Printf("Error starting Simple chaincode: %s", err)
	}
}
開發者ID:C0rWin,項目名稱:fabric,代碼行數:6,代碼來源:authorizable_counter.go

示例12: main

func main() {
	err := shim.Start(new(systemChaincode))
	if err != nil {
		fmt.Printf("Error starting System chaincode: %s", err)
	}
}
開發者ID:magooster,項目名稱:obc-peer,代碼行數:6,代碼來源:validity_period_update.go


注:本文中的github.com/hyperledger/fabric/core/chaincode/shim.Start函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。