Merge pull request #6060 from mattbajorek/bugfix/lncli-trackpayment-json

lncli: Add json flag to trackpayment
This commit is contained in:
Oliver Gugger
2021-12-07 21:15:38 +01:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -556,7 +556,10 @@ var trackPaymentCommand = cli.Command{
specified by the hash argument.
`,
ArgsUsage: "hash",
Action: actionDecorator(trackPayment),
Flags: []cli.Flag{
jsonFlag,
},
Action: actionDecorator(trackPayment),
}
func trackPayment(ctx *cli.Context) error {

View File

@@ -12,6 +12,11 @@
using itest harness outside of
lnd](https://github.com/lightningnetwork/lnd/pull/6050).
## Bug fixes
* [Add json flag to
trackpayment](https://github.com/lightningnetwork/lnd/pull/6060)
# Contributors (Alphabetical Order)
* Andras Banki-Horvath