(args string, retVal *bool)
| 237 | } |
| 238 | |
| 239 | func (cmd *CliRpcCmd) IsLoggedIn(args string, retVal *bool) error { |
| 240 | *retVal = cmd.cliConfig.IsLoggedIn() |
| 241 | |
| 242 | return nil |
| 243 | } |
| 244 | |
| 245 | func (cmd *CliRpcCmd) IsSSLDisabled(args string, retVal *bool) error { |
| 246 | *retVal = cmd.cliConfig.IsSSLDisabled() |
nothing calls this directly
no test coverage detected