mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-26 01:33:02 +01:00
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:
parent
282c50e444
commit
b32f576aeb
File diff suppressed because it is too large
Load Diff
@ -2167,6 +2167,8 @@ message CloseStatusUpdate {
|
||||
message PendingUpdate {
|
||||
bytes txid = 1;
|
||||
uint32 output_index = 2;
|
||||
int64 fee_per_vbyte = 3;
|
||||
bool local_close_tx = 4;
|
||||
}
|
||||
|
||||
message InstantUpdate {
|
||||
|
@ -6739,6 +6739,13 @@
|
||||
"output_index": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"fee_per_vbyte": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"local_close_tx": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user