mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
Chain subcommand includes the commands: getblock, getbestblock, and getblockhash. This commit removes conflicting neutrino cli commands.
11 lines
197 B
Go
11 lines
197 B
Go
//go:build !chainrpc
|
|
// +build !chainrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// chainCommands will return nil for non-chainrpc builds.
|
|
func chainCommands() []cli.Command {
|
|
return nil
|
|
}
|