lnd/cmd/lncli/chainrpc_default.go
ffranr bab526f655
cmd: add chain subcommand
Chain subcommand includes the commands: getblock, getbestblock, and getblockhash.

This commit removes conflicting neutrino cli commands.
2022-12-07 14:50:15 +00:00

12 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
}