(c *cli.Context)
| 301 | } |
| 302 | |
| 303 | func actionCreateWallet(c *cli.Context) (err error) { |
| 304 | // check if there is an account |
| 305 | if n := onchain.NumOfAccounts(dosPath); n != 0 { |
| 306 | fmt.Println("Found keystore files") |
| 307 | return nil |
| 308 | } |
| 309 | _, err = createWallet() |
| 310 | return err |
| 311 | } |
| 312 | |
| 313 | func actionWalletInfo(c *cli.Context) error { |
| 314 | return nil |
nothing calls this directly
no test coverage detected