Fix build issue for lncli
Error message: cmd/lncli/commands.go:27: undefined: shell
This commit is contained in:
parent
3f74cee023
commit
5bddb611dc
@ -24,7 +24,9 @@ func printRespJson(resp interface{}) {
|
|||||||
var ShellCommand = cli.Command{
|
var ShellCommand = cli.Command{
|
||||||
Name: "shell",
|
Name: "shell",
|
||||||
Usage: "enter interactive shell",
|
Usage: "enter interactive shell",
|
||||||
Action: shell,
|
Action: func(c *cli.Context) {
|
||||||
|
println("not implemented yet")
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
var NewAddressCommand = cli.Command{
|
var NewAddressCommand = cli.Command{
|
||||||
|
Loading…
Reference in New Issue
Block a user