(nodeID string)
| 3 | import "fmt" |
| 4 | |
| 5 | func (cli *CLI) createWallet(nodeID string) { |
| 6 | wallets, _ := NewWallets(nodeID) |
| 7 | address := wallets.CreateWallet() |
| 8 | wallets.SaveToFile(nodeID) |
| 9 | |
| 10 | fmt.Printf("Your new address: %s\n", address) |
| 11 | } |
no test coverage detected