2021-08-23 10:35:48 +02:00
|
|
|
//go:build !walletrpc
|
2019-05-16 19:53:42 -07:00
|
|
|
// +build !walletrpc
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
|
|
|
// walletCommands will return nil for non-walletrpc builds.
|
|
|
|
func walletCommands() []cli.Command {
|
|
|
|
return nil
|
|
|
|
}
|