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

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