本文整理匯總了Golang中github.com/eris-ltd/mint-client/Godeps/_workspace/src/github.com/codegangsta/cli.Context.IsSet方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.IsSet方法的具體用法?Golang Context.IsSet怎麽用?Golang Context.IsSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/eris-ltd/mint-client/Godeps/_workspace/src/github.com/codegangsta/cli.Context
的用法示例。
在下文中一共展示了Context.IsSet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: cliName
func cliName(c *cli.Context) {
chainID, nodeAddr, signAddr := c.String("chainID"), c.String("node-addr"), c.String("sign-addr")
sign, broadcast, wait := c.Bool("sign"), c.Bool("broadcast"), c.Bool("wait")
pubkey, amtS, nonceS, feeS, addr := c.String("pubkey"), c.String("amt"), c.String("nonce"), c.String("fee"), c.String("addr")
if c.IsSet("data") && c.IsSet("data-file") {
common.Exit(fmt.Errorf("Please specify only one of --data and --data-file"))
}
name, data, dataFile := c.String("name"), c.String("data"), c.String("data-file")
if data == "" && dataFile != "" {
b, err := ioutil.ReadFile(dataFile)
common.IfExit(err)
data = string(b)
}
tx, err := core.Name(nodeAddr, pubkey, addr, amtS, nonceS, feeS, name, data)
common.IfExit(err)
logger.Debugf("%v\n", tx)
unpackSignAndBroadcast(core.SignAndBroadcast(chainID, nodeAddr, signAddr, tx, sign, broadcast, wait))
}