cmd/loop: add new key word argument for optional destination sweep address

pull/22/head
Olaoluwa Osuntokun 5 years ago
parent f089ff3484
commit b744afaa6f
No known key found for this signature in database
GPG Key ID: CE58F7F8E20FD9A2

@ -25,6 +25,12 @@ var loopOutCommand = cli.Command{
Name: "channel", Name: "channel",
Usage: "the 8-byte compact channel ID of the channel to loop out", Usage: "the 8-byte compact channel ID of the channel to loop out",
}, },
cli.StringFlag{
Name: "addr",
Usage: "the optional address that the looped out funds " +
"should be sent to, if let blank the funds " +
"will go to lnd's wallet",
},
}, },
Action: loopOut, Action: loopOut,
} }
@ -44,8 +50,10 @@ func loopOut(ctx *cli.Context) error {
} }
var destAddr string var destAddr string
args = args.Tail() switch {
if args.Present() { case ctx.IsSet("addr"):
destAddr = ctx.String("addr")
case args.Present():
destAddr = args.First() destAddr = args.First()
} }

Loading…
Cancel
Save