11 lines
180 B
Go
11 lines
180 B
Go
|
// +build !walletrpc
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "github.com/urfave/cli"
|
||
|
|
||
|
// walletCommands will return nil for non-walletrpc builds.
|
||
|
func walletCommands() []cli.Command {
|
||
|
return nil
|
||
|
}
|