cmd/lncli: expose pending input sweeps within UtxoSweeper over lncli

This commit is contained in:
Wilmer Paulino
2019-05-16 19:53:42 -07:00
parent d01f88ecdc
commit 1d8b70eaa6
5 changed files with 125 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
// +build !walletrpc
package main
import "github.com/urfave/cli"
// walletCommands will return nil for non-walletrpc builds.
func walletCommands() []cli.Command {
return nil
}