コード例 #1
0
ファイル: chains.go プロジェクト: kustomzone/eris-cli
func LogChain(cmd *cobra.Command, args []string) {
	// [csk]: if no args should we just start the checkedout chain?
	IfExit(ArgCheck(1, "ge", cmd, args))
	do.Name = args[0]
	IfExit(chns.LogsChain(do))
}
コード例 #2
0
ファイル: chains.go プロジェクト: slowtokyo/eris-cli
func LogChain(cmd *cobra.Command, args []string) {
	IfExit(ArgCheck(1, "ge", cmd, args))
	do.Name = args[0]
	IfExit(chns.LogsChain(do))
}