Fix build issue for lncli

Error message:

cmd/lncli/commands.go:27: undefined: shell
This commit is contained in:
Paul Capestany 2016-01-17 19:18:08 -08:00
parent 3f74cee023
commit 5bddb611dc

@ -22,9 +22,11 @@ func printRespJson(resp interface{}) {
}
var ShellCommand = cli.Command{
Name: "shell",
Usage: "enter interactive shell",
Action: shell,
Name: "shell",
Usage: "enter interactive shell",
Action: func(c *cli.Context) {
println("not implemented yet")
},
}
var NewAddressCommand = cli.Command{