cmd/lncli: remove unused args for pendingchannels command

Fixes #1123.
This commit is contained in:
Olaoluwa Osuntokun 2018-04-25 13:28:15 -07:00
parent 91edf5ea07
commit c9eb077935
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -1357,23 +1357,8 @@ func getInfo(ctx *cli.Context) error {
}
var pendingChannelsCommand = cli.Command{
Name: "pendingchannels",
Usage: "Display information pertaining to pending channels",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "open, o",
Usage: "display the status of new pending channels",
},
cli.BoolFlag{
Name: "close, c",
Usage: "display the status of channels being closed",
},
cli.BoolFlag{
Name: "all, a",
Usage: "display the status of channels in the " +
"process of being opened or closed",
},
},
Name: "pendingchannels",
Usage: "Display information pertaining to pending channels",
Action: actionDecorator(pendingChannels),
}