mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-04 09:58:39 +02:00
lnrpc: add thaw_height to Channel and ChanPointShim
This commit is contained in:
parent
421d73b72e
commit
dbc485f724
1448
lnrpc/rpc.pb.go
1448
lnrpc/rpc.pb.go
File diff suppressed because it is too large
Load Diff
@ -1437,6 +1437,15 @@ message Channel {
|
||||
amount to us.
|
||||
*/
|
||||
uint64 push_amount_sat = 27;
|
||||
|
||||
/**
|
||||
This uint32 indicates if this channel is to be considered 'frozen'. A
|
||||
frozen channel doest not allow a cooperative channel close by the
|
||||
initiator. The thaw_height is the height that this restriction stops
|
||||
applying to the channel. This field is optional, not setting it or using a
|
||||
value of zero will mean the channel has no additional restrictions.
|
||||
*/
|
||||
uint32 thaw_height = 28;
|
||||
}
|
||||
|
||||
message ListChannelsRequest {
|
||||
@ -1881,6 +1890,14 @@ message ChanPointShim {
|
||||
channel ID.
|
||||
*/
|
||||
bytes pending_chan_id = 5;
|
||||
|
||||
/**
|
||||
This uint32 indicates if this channel is to be considered 'frozen'. A
|
||||
frozen channel does not allow a cooperative channel close by the
|
||||
initiator. The thaw_height is the height that this restriction stops
|
||||
applying to the channel.
|
||||
*/
|
||||
uint32 thaw_height = 6;
|
||||
}
|
||||
|
||||
message FundingShim {
|
||||
|
@ -1847,6 +1847,11 @@
|
||||
"type": "string",
|
||||
"format": "byte",
|
||||
"description": "*\nIf non-zero, then this will be used as the pending channel ID on the wire\nprotocol to initate the funding request. This is an optional field, and\nshould only be set if the responder is already expecting a specific pending\nchannel ID."
|
||||
},
|
||||
"thaw_height": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"description": "*\nThis uint32 indicates if this channel is to be considered 'frozen'. A\nfrozen channel does not allow a cooperative channel close by the\ninitiator. The thaw_height is the height that this restriction stops\napplying to the channel."
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2002,6 +2007,11 @@
|
||||
"type": "string",
|
||||
"format": "uint64",
|
||||
"description": "The amount that the initiator of the channel optionally pushed to the remote\nparty on channel open. This amount will be zero if the channel initiator did\nnot push any funds to the remote peer. If the initiator field is true, we\npushed this amount to our peer, if it is false, the remote peer pushed this\namount to us."
|
||||
},
|
||||
"thaw_height": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"description": "*\nThis uint32 indicates if this channel is to be considered 'frozen'. A\nfrozen channel doest not allow a cooperative channel close by the\ninitiator. The thaw_height is the height that this restriction stops\napplying to the channel. This field is optional, not setting it or using a\nvalue of zero will mean the channel has no additional restrictions."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user