lnrpc: add features field to invoices

This commit is contained in:
Conner Fromknecht 2019-12-11 16:36:44 -08:00
parent dca31c2bf8
commit 7446495b6d
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7
3 changed files with 591 additions and 571 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2371,6 +2371,9 @@ message Invoice {
/// List of HTLCs paying to this invoice [EXPERIMENTAL].
repeated InvoiceHTLC htlcs = 22 [json_name = "htlcs"];
/// List of features advertised on the invoice.
repeated Feature features = 24 [json_name = "features"];
}
enum InvoiceHTLCState {

View File

@ -2802,6 +2802,13 @@
"$ref": "#/definitions/lnrpcInvoiceHTLC"
},
"description": "/ List of HTLCs paying to this invoice [EXPERIMENTAL]."
},
"features": {
"type": "array",
"items": {
"$ref": "#/definitions/lnrpcFeature"
},
"description": "/ List of features advertised on the invoice."
}
}
},