(c *cli.Context)
| 315 | } |
| 316 | |
| 317 | func actionWalletBalance(c *cli.Context) error { |
| 318 | r, err := makeRequest("/balance") |
| 319 | if err == nil { |
| 320 | fmt.Println("show balance: ", string(r)) |
| 321 | return nil |
| 322 | } |
| 323 | return err |
| 324 | } |
| 325 | |
| 326 | func actionEnableGuardian(c *cli.Context) error { |
| 327 | _, err := makeRequest("/enableGuardian") |
nothing calls this directly
no test coverage detected