mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 22:46:40 +01:00
This commit adds commands 'status', 'enable' and 'disable' for autopilot. The commands will only be enabled for autopilotrpc builds of lncli.
10 lines
192 B
Go
10 lines
192 B
Go
// +build !autopilotrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// autopilotCommands will return nil for non-autopilotrpc builds.
|
|
func autopilotCommands() []cli.Command {
|
|
return nil
|
|
}
|