cmd/lncli: add command+parsing for updatefees and feereport

This commit is contained in:
Olaoluwa Osuntokun
2017-08-22 00:29:08 -07:00
parent 3df5b090da
commit 2790617176
2 changed files with 155 additions and 1 deletions

View File

@@ -108,7 +108,7 @@ func getClientConn(ctx *cli.Context) *grpc.ClientConn {
func main() {
app := cli.NewApp()
app.Name = "lncli"
app.Version = "0.2"
app.Version = "0.2.1"
app.Usage = "control plane for your Lightning Network Daemon (lnd)"
app.Flags = []cli.Flag{
cli.StringFlag{
@@ -166,6 +166,8 @@ func main() {
stopCommand,
signMessageCommand,
verifyMessageCommand,
feeReportCommand,
updateFeesCommand,
}
if err := app.Run(os.Args); err != nil {