lnrpc: add fee rate and local close bool to PendingUpdate

This'll allow us to notify the caller each time a new coop close
transaction with a higher fee rate is signed.
This commit is contained in:
Olaoluwa Osuntokun 2024-03-07 20:14:19 -08:00
parent a03cd75db6
commit 9776d5c362
3 changed files with 2244 additions and 2214 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2089,6 +2089,8 @@ message CloseStatusUpdate {
message PendingUpdate {
bytes txid = 1;
uint32 output_index = 2;
int64 fee_rate_per_vbyte = 3;
bool local_close_tx = 4;
}
message InstantUpdate {

View File

@ -6602,6 +6602,13 @@
"output_index": {
"type": "integer",
"format": "int64"
},
"fee_rate_per_vbyte": {
"type": "string",
"format": "int64"
},
"local_close_tx": {
"type": "boolean"
}
}
},