lnrpc: remove confirmation_height from PendingOpenChannel proto

This commit is contained in:
Tommy Volk 2022-05-06 04:12:52 +00:00
parent 8c3b9e7153
commit a2db074eec
3 changed files with 1690 additions and 1707 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2369,9 +2369,6 @@ message PendingChannelsResponse {
// The pending channel // The pending channel
PendingChannel channel = 1; PendingChannel channel = 1;
// The height at which this channel will be confirmed
uint32 confirmation_height = 2;
/* /*
The amount calculated to be paid in fees for the current set of The amount calculated to be paid in fees for the current set of
commitment transactions. The fee amount is persisted with the channel commitment transactions. The fee amount is persisted with the channel
@ -2390,6 +2387,9 @@ message PendingChannelsResponse {
transaction. This value can later be updated once the channel is open. transaction. This value can later be updated once the channel is open.
*/ */
int64 fee_per_kw = 6; int64 fee_per_kw = 6;
// Previously used for confirmation_height. Do not reuse.
reserved 2;
} }
message WaitingCloseChannel { message WaitingCloseChannel {

View File

@ -2792,11 +2792,6 @@
"$ref": "#/definitions/PendingChannelsResponsePendingChannel", "$ref": "#/definitions/PendingChannelsResponsePendingChannel",
"title": "The pending channel" "title": "The pending channel"
}, },
"confirmation_height": {
"type": "integer",
"format": "int64",
"title": "The height at which this channel will be confirmed"
},
"commit_fee": { "commit_fee": {
"type": "string", "type": "string",
"format": "int64", "format": "int64",