mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-12 22:22:36 +02:00
Fix build issue for lncli
Error message: cmd/lncli/commands.go:27: undefined: shell
This commit is contained in:
@ -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{
|
||||
|
Reference in New Issue
Block a user