(ctx *cli.Context)
| 181 | } |
| 182 | } |
| 183 | func checkLabel(ctx *cli.Context) string { |
| 184 | if ctx.IsSet(utils.GetFlagName(utils.AccountLabelFlag)) { |
| 185 | return ctx.String(utils.GetFlagName(utils.AccountLabelFlag)) |
| 186 | } else { |
| 187 | return "" |
| 188 | } |
| 189 | } |
| 190 | func checkType(ctx *cli.Context, reader *bufio.Reader) string { |
| 191 | t := "" |
| 192 | typeFlag := utils.GetFlagName(utils.AccountTypeFlag) |
no test coverage detected