mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-08 20:28:04 +02: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
a03cd75db6
commit
9776d5c362
File diff suppressed because it is too large
Load Diff
@ -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 {
|
||||
|
@ -6602,6 +6602,13 @@
|
||||
"output_index": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"fee_rate_per_vbyte": {
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
},
|
||||
"local_close_tx": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user