Fix build issue for lncli
Error message: cmd/lncli/commands.go:27: undefined: shell
This commit is contained in:
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{
|
||||
|
Loading…
Reference in New Issue
Block a user