What changed, and why it matters
This commit adds a new gRPC API endpoint called SendOnionMessage to the LND Lightning node, along with a matching subscription stream for incoming onion messages. It only changes the protocol definition and generated code; it does not include the actual server-side implementation that would process these messages. Because the implementation is missing, the change by itself does not create or fix a security vulnerability, but it does expose a new network-facing capability that will need careful review once the backend logic lands.
Treat this as a surface-only change requiring follow-up review. When the backend implementation is merged, audit it for onion packet length limits, path-key validation, peer authorization, rate limiting, and prevention of free routing/DoS via arbitrary onion messages. Until then, no immediate patch is required for this commit alone.
Security signals we found
New network-exposed RPC surface added (SendOnionMessage / SubscribeOnionMessages)
Raw onion packet bytes accepted from API caller with no visible validation in this commit
Blinded-path path_key is exposed to the API and forwarded to peer logic
Generated gateway/swagger changes expose the endpoint to REST clients
No implementation, tests, or access-control changes are included in the diff
Evidence from the diff
The diff is a protobuf/gRPC surface change in lnrpc/lightning.proto and its generated Go, gateway, swagger, and YAML artifacts. It introduces SubscribeOnionMessages (server-streaming), SendOnionMessage (unary), OnionMessage, SendOnionMessageRequest/Response, and SubscribeOnionMessagesRequest messages. The request carries a peer public key, a path key, and a raw Sphinx onion packet. No handler implementation, validation, rate limiting, or authorization logic is present in this commit. The large +/- line count is almost entirely generated-code index shifts and descriptor bytes.
Changed components
lnrpc/lightning.protolnrpc/lightning.pb.golnrpc/lightning.pb.gw.golnrpc/lightning.pb.json.golnrpc/lightning.swagger.jsonlnrpc/lightning.yamllnrpc/lightning_grpc.pb.goInspect captured patch +5362 / −4555
diff --git a/lnrpc/lightning.pb.go b/lnrpc/lightning.pb.go
index d08cf3a..30b71c7 100644
--- a/lnrpc/lightning.pb.go
+++ b/lnrpc/lightning.pb.go
@@ -867,7 +867,7 @@ func (x ChannelCloseSummary_ClosureType) Number() protoreflect.EnumNumber {
// Deprecated: Use ChannelCloseSummary_ClosureType.Descriptor instead.
func (ChannelCloseSummary_ClosureType) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{47, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{51, 0}
}
type Peer_SyncType int32
@@ -923,7 +923,7 @@ func (x Peer_SyncType) Number() protoreflect.EnumNumber {
// Deprecated: Use Peer_SyncType.Descriptor instead.
func (Peer_SyncType) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{51, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{55, 0}
}
type PeerEvent_EventType int32
@@ -969,7 +969,7 @@ func (x PeerEvent_EventType) Number() protoreflect.EnumNumber {
// Deprecated: Use PeerEvent_EventType.Descriptor instead.
func (PeerEvent_EventType) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{56, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{60, 0}
}
// There are three resolution states for the anchor:
@@ -1024,7 +1024,7 @@ func (x PendingChannelsResponse_ForceClosedChannel_AnchorState) Number() protore
// Deprecated: Use PendingChannelsResponse_ForceClosedChannel_AnchorState.Descriptor instead.
func (PendingChannelsResponse_ForceClosedChannel_AnchorState) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 5, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 5, 0}
}
type ChannelEventUpdate_UpdateType int32
@@ -1085,7 +1085,7 @@ func (x ChannelEventUpdate_UpdateType) Number() protoreflect.EnumNumber {
// Deprecated: Use ChannelEventUpdate_UpdateType.Descriptor instead.
func (ChannelEventUpdate_UpdateType) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{91, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{95, 0}
}
type Invoice_InvoiceState int32
@@ -1137,7 +1137,7 @@ func (x Invoice_InvoiceState) Number() protoreflect.EnumNumber {
// Deprecated: Use Invoice_InvoiceState.Descriptor instead.
func (Invoice_InvoiceState) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{135, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{139, 0}
}
type Payment_PaymentStatus int32
@@ -1199,7 +1199,7 @@ func (x Payment_PaymentStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use Payment_PaymentStatus.Descriptor instead.
func (Payment_PaymentStatus) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{146, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{150, 0}
}
type HTLCAttempt_HTLCStatus int32
@@ -1248,7 +1248,7 @@ func (x HTLCAttempt_HTLCStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use HTLCAttempt_HTLCStatus.Descriptor instead.
func (HTLCAttempt_HTLCStatus) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{147, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{151, 0}
}
type Failure_FailureCode int32
@@ -1382,7 +1382,7 @@ func (x Failure_FailureCode) Number() protoreflect.EnumNumber {
// Deprecated: Use Failure_FailureCode.Descriptor instead.
func (Failure_FailureCode) EnumDescriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{191, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{195, 0}
}
type LookupHtlcResolutionRequest struct {
@@ -1606,7 +1606,8 @@ type SendCustomMessageRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // Peer to send the message to
+ // Peer to which the message will be sent. Represented as a byte-encoded
+ // public key
Peer []byte `protobuf:"bytes,1,opt,name=peer,proto3" json:"peer,omitempty"`
// Message type. This value needs to be in the custom range (>= 32768).
// To send a type < custom range, lnd needs to be compiled with the `dev`
@@ -1718,6 +1719,241 @@ func (x *SendCustomMessageResponse) GetStatus() string {
return ""
}
+type SubscribeOnionMessagesRequest struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *SubscribeOnionMessagesRequest) Reset() {
+ *x = SubscribeOnionMessagesRequest{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_lightning_proto_msgTypes[6]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *SubscribeOnionMessagesRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SubscribeOnionMessagesRequest) ProtoMessage() {}
+
+func (x *SubscribeOnionMessagesRequest) ProtoReflect() protoreflect.Message {
+ mi := &file_lightning_proto_msgTypes[6]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use SubscribeOnionMessagesRequest.ProtoReflect.Descriptor instead.
+func (*SubscribeOnionMessagesRequest) Descriptor() ([]byte, []int) {
+ return file_lightning_proto_rawDescGZIP(), []int{6}
+}
+
+type OnionMessage struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // Peer from which this message originates. Represented as a byte-encoded
+ // public key.
+ Peer []byte `protobuf:"bytes,1,opt,name=peer,proto3" json:"peer,omitempty"`
+ // PathKey is used to derive the blinded node id by tweaking the hop's
+ // static public key. The hop uses the corresponding blinded private key
+ // together with the sender's ephemeral key to perform ECDH and obtain the
+ // shared secret for decrypting the onion payload. Separately, for
+ // decrypting `encrypted_recipient_data`, the recipient performs ECDH
+ // between its static node private key and the path_key to derive the
+ // decryption key.
+ PathKey []byte `protobuf:"bytes,2,opt,name=path_key,json=pathKey,proto3" json:"path_key,omitempty"`
+ // Serialized Sphinx onion packet (BOLT 4) containing the layered, per-hop
+ // encrypted payloads and routing instructions used to forward this message
+ // along its designated path.
+ Onion []byte `protobuf:"bytes,3,opt,name=onion,proto3" json:"onion,omitempty"`
+}
+
+func (x *OnionMessage) Reset() {
+ *x = OnionMessage{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_lightning_proto_msgTypes[7]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *OnionMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*OnionMessage) ProtoMessage() {}
+
+func (x *OnionMessage) ProtoReflect() protoreflect.Message {
+ mi := &file_lightning_proto_msgTypes[7]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use OnionMessage.ProtoReflect.Descriptor instead.
+func (*OnionMessage) Descriptor() ([]byte, []int) {
+ return file_lightning_proto_rawDescGZIP(), []int{7}
+}
+
+func (x *OnionMessage) GetPeer() []byte {
+ if x != nil {
+ return x.Peer
+ }
+ return nil
+}
+
+func (x *OnionMessage) GetPathKey() []byte {
+ if x != nil {
+ return x.PathKey
+ }
+ return nil
+}
+
+func (x *OnionMessage) GetOnion() []byte {
+ if x != nil {
+ return x.Onion
+ }
+ return nil
+}
+
+type SendOnionMessageRequest struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // Peer to send the message to
+ Peer []byte `protobuf:"bytes,1,opt,name=peer,proto3" json:"peer,omitempty"`
+ // PathKey is used to derive the blinded node id by tweaking the hop's
+ // static public key. The hop uses the corresponding blinded private key
+ // together with the sender's ephemeral key to perform ECDH and obtain the
+ // shared secret for decrypting the onion payload. Separately, for
+ // decrypting `encrypted_recipient_data`, the recipient performs ECDH
+ // between its static node private key and the path_key to derive the
+ // decryption key.
+ PathKey []byte `protobuf:"bytes,2,opt,name=path_key,json=pathKey,proto3" json:"path_key,omitempty"`
+ // Serialized Sphinx onion packet (BOLT 4) containing the layered, per-hop
+ // encrypted payloads and routing instructions used to forward this message
+ // along its designated path.
+ Onion []byte `protobuf:"bytes,3,opt,name=onion,proto3" json:"onion,omitempty"`
+}
+
+func (x *SendOnionMessageRequest) Reset() {
+ *x = SendOnionMessageRequest{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_lightning_proto_msgTypes[8]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *SendOnionMessageRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SendOnionMessageRequest) ProtoMessage() {}
+
+func (x *SendOnionMessageRequest) ProtoReflect() protoreflect.Message {
+ mi := &file_lightning_proto_msgTypes[8]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use SendOnionMessageRequest.ProtoReflect.Descriptor instead.
+func (*SendOnionMessageRequest) Descriptor() ([]byte, []int) {
+ return file_lightning_proto_rawDescGZIP(), []int{8}
+}
+
+func (x *SendOnionMessageRequest) GetPeer() []byte {
+ if x != nil {
+ return x.Peer
+ }
+ return nil
+}
+
+func (x *SendOnionMessageRequest) GetPathKey() []byte {
+ if x != nil {
+ return x.PathKey
+ }
+ return nil
+}
+
+func (x *SendOnionMessageRequest) GetOnion() []byte {
+ if x != nil {
+ return x.Onion
+ }
+ return nil
+}
+
+type SendOnionMessageResponse struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // The status of the onion message send operation.
+ Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
+}
+
+func (x *SendOnionMessageResponse) Reset() {
+ *x = SendOnionMessageResponse{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_lightning_proto_msgTypes[9]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *SendOnionMessageResponse) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SendOnionMessageResponse) ProtoMessage() {}
+
+func (x *SendOnionMessageResponse) ProtoReflect() protoreflect.Message {
+ mi := &file_lightning_proto_msgTypes[9]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use SendOnionMessageResponse.ProtoReflect.Descriptor instead.
+func (*SendOnionMessageResponse) Descriptor() ([]byte, []int) {
+ return file_lightning_proto_rawDescGZIP(), []int{9}
+}
+
+func (x *SendOnionMessageResponse) GetStatus() string {
+ if x != nil {
+ return x.Status
+ }
+ return ""
+}
+
type Utxo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1740,7 +1976,7 @@ type Utxo struct {
func (x *Utxo) Reset() {
*x = Utxo{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[6]
+ mi := &file_lightning_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1753,7 +1989,7 @@ func (x *Utxo) String() string {
func (*Utxo) ProtoMessage() {}
func (x *Utxo) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[6]
+ mi := &file_lightning_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1766,7 +2002,7 @@ func (x *Utxo) ProtoReflect() protoreflect.Message {
// Deprecated: Use Utxo.ProtoReflect.Descriptor instead.
func (*Utxo) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{6}
+ return file_lightning_proto_rawDescGZIP(), []int{10}
}
func (x *Utxo) GetAddressType() AddressType {
@@ -1833,7 +2069,7 @@ type OutputDetail struct {
func (x *OutputDetail) Reset() {
*x = OutputDetail{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[7]
+ mi := &file_lightning_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1846,7 +2082,7 @@ func (x *OutputDetail) String() string {
func (*OutputDetail) ProtoMessage() {}
func (x *OutputDetail) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[7]
+ mi := &file_lightning_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1859,7 +2095,7 @@ func (x *OutputDetail) ProtoReflect() protoreflect.Message {
// Deprecated: Use OutputDetail.ProtoReflect.Descriptor instead.
func (*OutputDetail) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{7}
+ return file_lightning_proto_rawDescGZIP(), []int{11}
}
func (x *OutputDetail) GetOutputType() OutputScriptType {
@@ -1941,7 +2177,7 @@ type Transaction struct {
func (x *Transaction) Reset() {
*x = Transaction{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[8]
+ mi := &file_lightning_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1954,7 +2190,7 @@ func (x *Transaction) String() string {
func (*Transaction) ProtoMessage() {}
func (x *Transaction) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[8]
+ mi := &file_lightning_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1967,7 +2203,7 @@ func (x *Transaction) ProtoReflect() protoreflect.Message {
// Deprecated: Use Transaction.ProtoReflect.Descriptor instead.
func (*Transaction) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{8}
+ return file_lightning_proto_rawDescGZIP(), []int{12}
}
func (x *Transaction) GetTxHash() string {
@@ -2082,7 +2318,7 @@ type GetTransactionsRequest struct {
func (x *GetTransactionsRequest) Reset() {
*x = GetTransactionsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[9]
+ mi := &file_lightning_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2095,7 +2331,7 @@ func (x *GetTransactionsRequest) String() string {
func (*GetTransactionsRequest) ProtoMessage() {}
func (x *GetTransactionsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[9]
+ mi := &file_lightning_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2108,7 +2344,7 @@ func (x *GetTransactionsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetTransactionsRequest.ProtoReflect.Descriptor instead.
func (*GetTransactionsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{9}
+ return file_lightning_proto_rawDescGZIP(), []int{13}
}
func (x *GetTransactionsRequest) GetStartHeight() int32 {
@@ -2164,7 +2400,7 @@ type TransactionDetails struct {
func (x *TransactionDetails) Reset() {
*x = TransactionDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[10]
+ mi := &file_lightning_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2177,7 +2413,7 @@ func (x *TransactionDetails) String() string {
func (*TransactionDetails) ProtoMessage() {}
func (x *TransactionDetails) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[10]
+ mi := &file_lightning_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2190,7 +2426,7 @@ func (x *TransactionDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use TransactionDetails.ProtoReflect.Descriptor instead.
func (*TransactionDetails) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{10}
+ return file_lightning_proto_rawDescGZIP(), []int{14}
}
func (x *TransactionDetails) GetTransactions() []*Transaction {
@@ -2230,7 +2466,7 @@ type FeeLimit struct {
func (x *FeeLimit) Reset() {
*x = FeeLimit{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[11]
+ mi := &file_lightning_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2243,7 +2479,7 @@ func (x *FeeLimit) String() string {
func (*FeeLimit) ProtoMessage() {}
func (x *FeeLimit) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[11]
+ mi := &file_lightning_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2256,7 +2492,7 @@ func (x *FeeLimit) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeeLimit.ProtoReflect.Descriptor instead.
func (*FeeLimit) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{11}
+ return file_lightning_proto_rawDescGZIP(), []int{15}
}
func (m *FeeLimit) GetLimit() isFeeLimit_Limit {
@@ -2389,7 +2625,7 @@ type SendRequest struct {
func (x *SendRequest) Reset() {
*x = SendRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[12]
+ mi := &file_lightning_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2402,7 +2638,7 @@ func (x *SendRequest) String() string {
func (*SendRequest) ProtoMessage() {}
func (x *SendRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[12]
+ mi := &file_lightning_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2415,7 +2651,7 @@ func (x *SendRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendRequest.ProtoReflect.Descriptor instead.
func (*SendRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{12}
+ return file_lightning_proto_rawDescGZIP(), []int{16}
}
func (x *SendRequest) GetDest() []byte {
@@ -2546,7 +2782,7 @@ type SendResponse struct {
func (x *SendResponse) Reset() {
*x = SendResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[13]
+ mi := &file_lightning_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2559,7 +2795,7 @@ func (x *SendResponse) String() string {
func (*SendResponse) ProtoMessage() {}
func (x *SendResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[13]
+ mi := &file_lightning_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2572,7 +2808,7 @@ func (x *SendResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendResponse.ProtoReflect.Descriptor instead.
func (*SendResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{13}
+ return file_lightning_proto_rawDescGZIP(), []int{17}
}
func (x *SendResponse) GetPaymentError() string {
@@ -2623,7 +2859,7 @@ type SendToRouteRequest struct {
func (x *SendToRouteRequest) Reset() {
*x = SendToRouteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[14]
+ mi := &file_lightning_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2636,7 +2872,7 @@ func (x *SendToRouteRequest) String() string {
func (*SendToRouteRequest) ProtoMessage() {}
func (x *SendToRouteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[14]
+ mi := &file_lightning_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2649,7 +2885,7 @@ func (x *SendToRouteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendToRouteRequest.ProtoReflect.Descriptor instead.
func (*SendToRouteRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{14}
+ return file_lightning_proto_rawDescGZIP(), []int{18}
}
func (x *SendToRouteRequest) GetPaymentHash() []byte {
@@ -2724,7 +2960,7 @@ type ChannelAcceptRequest struct {
func (x *ChannelAcceptRequest) Reset() {
*x = ChannelAcceptRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[15]
+ mi := &file_lightning_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2737,7 +2973,7 @@ func (x *ChannelAcceptRequest) String() string {
func (*ChannelAcceptRequest) ProtoMessage() {}
func (x *ChannelAcceptRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[15]
+ mi := &file_lightning_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2750,7 +2986,7 @@ func (x *ChannelAcceptRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelAcceptRequest.ProtoReflect.Descriptor instead.
func (*ChannelAcceptRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{15}
+ return file_lightning_proto_rawDescGZIP(), []int{19}
}
func (x *ChannelAcceptRequest) GetNodePubkey() []byte {
@@ -2911,7 +3147,7 @@ type ChannelAcceptResponse struct {
func (x *ChannelAcceptResponse) Reset() {
*x = ChannelAcceptResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[16]
+ mi := &file_lightning_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2924,7 +3160,7 @@ func (x *ChannelAcceptResponse) String() string {
func (*ChannelAcceptResponse) ProtoMessage() {}
func (x *ChannelAcceptResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[16]
+ mi := &file_lightning_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2937,7 +3173,7 @@ func (x *ChannelAcceptResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelAcceptResponse.ProtoReflect.Descriptor instead.
func (*ChannelAcceptResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{16}
+ return file_lightning_proto_rawDescGZIP(), []int{20}
}
func (x *ChannelAcceptResponse) GetAccept() bool {
@@ -3034,7 +3270,7 @@ type ChannelPoint struct {
func (x *ChannelPoint) Reset() {
*x = ChannelPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[17]
+ mi := &file_lightning_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3047,7 +3283,7 @@ func (x *ChannelPoint) String() string {
func (*ChannelPoint) ProtoMessage() {}
func (x *ChannelPoint) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[17]
+ mi := &file_lightning_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3060,7 +3296,7 @@ func (x *ChannelPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelPoint.ProtoReflect.Descriptor instead.
func (*ChannelPoint) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{17}
+ return file_lightning_proto_rawDescGZIP(), []int{21}
}
func (m *ChannelPoint) GetFundingTxid() isChannelPoint_FundingTxid {
@@ -3127,7 +3363,7 @@ type OutPoint struct {
func (x *OutPoint) Reset() {
*x = OutPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[18]
+ mi := &file_lightning_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3140,7 +3376,7 @@ func (x *OutPoint) String() string {
func (*OutPoint) ProtoMessage() {}
func (x *OutPoint) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[18]
+ mi := &file_lightning_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3153,7 +3389,7 @@ func (x *OutPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use OutPoint.ProtoReflect.Descriptor instead.
func (*OutPoint) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{18}
+ return file_lightning_proto_rawDescGZIP(), []int{22}
}
func (x *OutPoint) GetTxidBytes() []byte {
@@ -3192,7 +3428,7 @@ type PreviousOutPoint struct {
func (x *PreviousOutPoint) Reset() {
*x = PreviousOutPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[19]
+ mi := &file_lightning_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3205,7 +3441,7 @@ func (x *PreviousOutPoint) String() string {
func (*PreviousOutPoint) ProtoMessage() {}
func (x *PreviousOutPoint) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[19]
+ mi := &file_lightning_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3218,7 +3454,7 @@ func (x *PreviousOutPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use PreviousOutPoint.ProtoReflect.Descriptor instead.
func (*PreviousOutPoint) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{19}
+ return file_lightning_proto_rawDescGZIP(), []int{23}
}
func (x *PreviousOutPoint) GetOutpoint() string {
@@ -3250,7 +3486,7 @@ type LightningAddress struct {
func (x *LightningAddress) Reset() {
*x = LightningAddress{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[20]
+ mi := &file_lightning_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3263,7 +3499,7 @@ func (x *LightningAddress) String() string {
func (*LightningAddress) ProtoMessage() {}
func (x *LightningAddress) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[20]
+ mi := &file_lightning_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3276,7 +3512,7 @@ func (x *LightningAddress) ProtoReflect() protoreflect.Message {
// Deprecated: Use LightningAddress.ProtoReflect.Descriptor instead.
func (*LightningAddress) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{20}
+ return file_lightning_proto_rawDescGZIP(), []int{24}
}
func (x *LightningAddress) GetPubkey() string {
@@ -3315,7 +3551,7 @@ type EstimateFeeRequest struct {
func (x *EstimateFeeRequest) Reset() {
*x = EstimateFeeRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[21]
+ mi := &file_lightning_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3328,7 +3564,7 @@ func (x *EstimateFeeRequest) String() string {
func (*EstimateFeeRequest) ProtoMessage() {}
func (x *EstimateFeeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[21]
+ mi := &file_lightning_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3341,7 +3577,7 @@ func (x *EstimateFeeRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use EstimateFeeRequest.ProtoReflect.Descriptor instead.
func (*EstimateFeeRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{21}
+ return file_lightning_proto_rawDescGZIP(), []int{25}
}
func (x *EstimateFeeRequest) GetAddrToAmount() map[string]int64 {
@@ -3398,7 +3634,7 @@ type EstimateFeeResponse struct {
func (x *EstimateFeeResponse) Reset() {
*x = EstimateFeeResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[22]
+ mi := &file_lightning_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3411,7 +3647,7 @@ func (x *EstimateFeeResponse) String() string {
func (*EstimateFeeResponse) ProtoMessage() {}
func (x *EstimateFeeResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[22]
+ mi := &file_lightning_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3424,7 +3660,7 @@ func (x *EstimateFeeResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use EstimateFeeResponse.ProtoReflect.Descriptor instead.
func (*EstimateFeeResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{22}
+ return file_lightning_proto_rawDescGZIP(), []int{26}
}
func (x *EstimateFeeResponse) GetFeeSat() int64 {
@@ -3482,7 +3718,7 @@ type SendManyRequest struct {
func (x *SendManyRequest) Reset() {
*x = SendManyRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[23]
+ mi := &file_lightning_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3495,7 +3731,7 @@ func (x *SendManyRequest) String() string {
func (*SendManyRequest) ProtoMessage() {}
func (x *SendManyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[23]
+ mi := &file_lightning_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3508,7 +3744,7 @@ func (x *SendManyRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendManyRequest.ProtoReflect.Descriptor instead.
func (*SendManyRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{23}
+ return file_lightning_proto_rawDescGZIP(), []int{27}
}
func (x *SendManyRequest) GetAddrToAmount() map[string]int64 {
@@ -3580,7 +3816,7 @@ type SendManyResponse struct {
func (x *SendManyResponse) Reset() {
*x = SendManyResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[24]
+ mi := &file_lightning_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3593,7 +3829,7 @@ func (x *SendManyResponse) String() string {
func (*SendManyResponse) ProtoMessage() {}
func (x *SendManyResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[24]
+ mi := &file_lightning_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3606,7 +3842,7 @@ func (x *SendManyResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendManyResponse.ProtoReflect.Descriptor instead.
func (*SendManyResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{24}
+ return file_lightning_proto_rawDescGZIP(), []int{28}
}
func (x *SendManyResponse) GetTxid() string {
@@ -3656,7 +3892,7 @@ type SendCoinsRequest struct {
func (x *SendCoinsRequest) Reset() {
*x = SendCoinsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[25]
+ mi := &file_lightning_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3669,7 +3905,7 @@ func (x *SendCoinsRequest) String() string {
func (*SendCoinsRequest) ProtoMessage() {}
func (x *SendCoinsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[25]
+ mi := &file_lightning_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3682,7 +3918,7 @@ func (x *SendCoinsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendCoinsRequest.ProtoReflect.Descriptor instead.
func (*SendCoinsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{25}
+ return file_lightning_proto_rawDescGZIP(), []int{29}
}
func (x *SendCoinsRequest) GetAddr() string {
@@ -3775,7 +4011,7 @@ type SendCoinsResponse struct {
func (x *SendCoinsResponse) Reset() {
*x = SendCoinsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[26]
+ mi := &file_lightning_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3788,7 +4024,7 @@ func (x *SendCoinsResponse) String() string {
func (*SendCoinsResponse) ProtoMessage() {}
func (x *SendCoinsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[26]
+ mi := &file_lightning_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3801,7 +4037,7 @@ func (x *SendCoinsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SendCoinsResponse.ProtoReflect.Descriptor instead.
func (*SendCoinsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{26}
+ return file_lightning_proto_rawDescGZIP(), []int{30}
}
func (x *SendCoinsResponse) GetTxid() string {
@@ -3827,7 +4063,7 @@ type ListUnspentRequest struct {
func (x *ListUnspentRequest) Reset() {
*x = ListUnspentRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[27]
+ mi := &file_lightning_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3840,7 +4076,7 @@ func (x *ListUnspentRequest) String() string {
func (*ListUnspentRequest) ProtoMessage() {}
func (x *ListUnspentRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[27]
+ mi := &file_lightning_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3853,7 +4089,7 @@ func (x *ListUnspentRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListUnspentRequest.ProtoReflect.Descriptor instead.
func (*ListUnspentRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{27}
+ return file_lightning_proto_rawDescGZIP(), []int{31}
}
func (x *ListUnspentRequest) GetMinConfs() int32 {
@@ -3889,7 +4125,7 @@ type ListUnspentResponse struct {
func (x *ListUnspentResponse) Reset() {
*x = ListUnspentResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[28]
+ mi := &file_lightning_proto_msgTypes[32]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3902,7 +4138,7 @@ func (x *ListUnspentResponse) String() string {
func (*ListUnspentResponse) ProtoMessage() {}
func (x *ListUnspentResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[28]
+ mi := &file_lightning_proto_msgTypes[32]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3915,7 +4151,7 @@ func (x *ListUnspentResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListUnspentResponse.ProtoReflect.Descriptor instead.
func (*ListUnspentResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{28}
+ return file_lightning_proto_rawDescGZIP(), []int{32}
}
func (x *ListUnspentResponse) GetUtxos() []*Utxo {
@@ -3940,7 +4176,7 @@ type NewAddressRequest struct {
func (x *NewAddressRequest) Reset() {
*x = NewAddressRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[29]
+ mi := &file_lightning_proto_msgTypes[33]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3953,7 +4189,7 @@ func (x *NewAddressRequest) String() string {
func (*NewAddressRequest) ProtoMessage() {}
func (x *NewAddressRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[29]
+ mi := &file_lightning_proto_msgTypes[33]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3966,7 +4202,7 @@ func (x *NewAddressRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use NewAddressRequest.ProtoReflect.Descriptor instead.
func (*NewAddressRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{29}
+ return file_lightning_proto_rawDescGZIP(), []int{33}
}
func (x *NewAddressRequest) GetType() AddressType {
@@ -3995,7 +4231,7 @@ type NewAddressResponse struct {
func (x *NewAddressResponse) Reset() {
*x = NewAddressResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[30]
+ mi := &file_lightning_proto_msgTypes[34]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4008,7 +4244,7 @@ func (x *NewAddressResponse) String() string {
func (*NewAddressResponse) ProtoMessage() {}
func (x *NewAddressResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[30]
+ mi := &file_lightning_proto_msgTypes[34]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4021,7 +4257,7 @@ func (x *NewAddressResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use NewAddressResponse.ProtoReflect.Descriptor instead.
func (*NewAddressResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{30}
+ return file_lightning_proto_rawDescGZIP(), []int{34}
}
func (x *NewAddressResponse) GetAddress() string {
@@ -4047,7 +4283,7 @@ type SignMessageRequest struct {
func (x *SignMessageRequest) Reset() {
*x = SignMessageRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[31]
+ mi := &file_lightning_proto_msgTypes[35]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4060,7 +4296,7 @@ func (x *SignMessageRequest) String() string {
func (*SignMessageRequest) ProtoMessage() {}
func (x *SignMessageRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[31]
+ mi := &file_lightning_proto_msgTypes[35]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4073,7 +4309,7 @@ func (x *SignMessageRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SignMessageRequest.ProtoReflect.Descriptor instead.
func (*SignMessageRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{31}
+ return file_lightning_proto_rawDescGZIP(), []int{35}
}
func (x *SignMessageRequest) GetMsg() []byte {
@@ -4102,7 +4338,7 @@ type SignMessageResponse struct {
func (x *SignMessageResponse) Reset() {
*x = SignMessageResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[32]
+ mi := &file_lightning_proto_msgTypes[36]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4115,7 +4351,7 @@ func (x *SignMessageResponse) String() string {
func (*SignMessageResponse) ProtoMessage() {}
func (x *SignMessageResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[32]
+ mi := &file_lightning_proto_msgTypes[36]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4128,7 +4364,7 @@ func (x *SignMessageResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SignMessageResponse.ProtoReflect.Descriptor instead.
func (*SignMessageResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{32}
+ return file_lightning_proto_rawDescGZIP(), []int{36}
}
func (x *SignMessageResponse) GetSignature() string {
@@ -4153,7 +4389,7 @@ type VerifyMessageRequest struct {
func (x *VerifyMessageRequest) Reset() {
*x = VerifyMessageRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[33]
+ mi := &file_lightning_proto_msgTypes[37]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4166,7 +4402,7 @@ func (x *VerifyMessageRequest) String() string {
func (*VerifyMessageRequest) ProtoMessage() {}
func (x *VerifyMessageRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[33]
+ mi := &file_lightning_proto_msgTypes[37]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4179,7 +4415,7 @@ func (x *VerifyMessageRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VerifyMessageRequest.ProtoReflect.Descriptor instead.
func (*VerifyMessageRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{33}
+ return file_lightning_proto_rawDescGZIP(), []int{37}
}
func (x *VerifyMessageRequest) GetMsg() []byte {
@@ -4210,7 +4446,7 @@ type VerifyMessageResponse struct {
func (x *VerifyMessageResponse) Reset() {
*x = VerifyMessageResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[34]
+ mi := &file_lightning_proto_msgTypes[38]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4223,7 +4459,7 @@ func (x *VerifyMessageResponse) String() string {
func (*VerifyMessageResponse) ProtoMessage() {}
func (x *VerifyMessageResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[34]
+ mi := &file_lightning_proto_msgTypes[38]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4236,7 +4472,7 @@ func (x *VerifyMessageResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VerifyMessageResponse.ProtoReflect.Descriptor instead.
func (*VerifyMessageResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{34}
+ return file_lightning_proto_rawDescGZIP(), []int{38}
}
func (x *VerifyMessageResponse) GetValid() bool {
@@ -4271,7 +4507,7 @@ type ConnectPeerRequest struct {
func (x *ConnectPeerRequest) Reset() {
*x = ConnectPeerRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[35]
+ mi := &file_lightning_proto_msgTypes[39]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4284,7 +4520,7 @@ func (x *ConnectPeerRequest) String() string {
func (*ConnectPeerRequest) ProtoMessage() {}
func (x *ConnectPeerRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[35]
+ mi := &file_lightning_proto_msgTypes[39]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4297,7 +4533,7 @@ func (x *ConnectPeerRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConnectPeerRequest.ProtoReflect.Descriptor instead.
func (*ConnectPeerRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{35}
+ return file_lightning_proto_rawDescGZIP(), []int{39}
}
func (x *ConnectPeerRequest) GetAddr() *LightningAddress {
@@ -4333,7 +4569,7 @@ type ConnectPeerResponse struct {
func (x *ConnectPeerResponse) Reset() {
*x = ConnectPeerResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[36]
+ mi := &file_lightning_proto_msgTypes[40]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4346,7 +4582,7 @@ func (x *ConnectPeerResponse) String() string {
func (*ConnectPeerResponse) ProtoMessage() {}
func (x *ConnectPeerResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[36]
+ mi := &file_lightning_proto_msgTypes[40]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4359,7 +4595,7 @@ func (x *ConnectPeerResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConnectPeerResponse.ProtoReflect.Descriptor instead.
func (*ConnectPeerResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{36}
+ return file_lightning_proto_rawDescGZIP(), []int{40}
}
func (x *ConnectPeerResponse) GetStatus() string {
@@ -4381,7 +4617,7 @@ type DisconnectPeerRequest struct {
func (x *DisconnectPeerRequest) Reset() {
*x = DisconnectPeerRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[37]
+ mi := &file_lightning_proto_msgTypes[41]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4394,7 +4630,7 @@ func (x *DisconnectPeerRequest) String() string {
func (*DisconnectPeerRequest) ProtoMessage() {}
func (x *DisconnectPeerRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[37]
+ mi := &file_lightning_proto_msgTypes[41]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4407,7 +4643,7 @@ func (x *DisconnectPeerRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DisconnectPeerRequest.ProtoReflect.Descriptor instead.
func (*DisconnectPeerRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{37}
+ return file_lightning_proto_rawDescGZIP(), []int{41}
}
func (x *DisconnectPeerRequest) GetPubKey() string {
@@ -4429,7 +4665,7 @@ type DisconnectPeerResponse struct {
func (x *DisconnectPeerResponse) Reset() {
*x = DisconnectPeerResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[38]
+ mi := &file_lightning_proto_msgTypes[42]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4442,7 +4678,7 @@ func (x *DisconnectPeerResponse) String() string {
func (*DisconnectPeerResponse) ProtoMessage() {}
func (x *DisconnectPeerResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[38]
+ mi := &file_lightning_proto_msgTypes[42]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4455,7 +4691,7 @@ func (x *DisconnectPeerResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DisconnectPeerResponse.ProtoReflect.Descriptor instead.
func (*DisconnectPeerResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{38}
+ return file_lightning_proto_rawDescGZIP(), []int{42}
}
func (x *DisconnectPeerResponse) GetStatus() string {
@@ -4495,7 +4731,7 @@ type HTLC struct {
func (x *HTLC) Reset() {
*x = HTLC{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[39]
+ mi := &file_lightning_proto_msgTypes[43]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4508,7 +4744,7 @@ func (x *HTLC) String() string {
func (*HTLC) ProtoMessage() {}
func (x *HTLC) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[39]
+ mi := &file_lightning_proto_msgTypes[43]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4521,7 +4757,7 @@ func (x *HTLC) ProtoReflect() protoreflect.Message {
// Deprecated: Use HTLC.ProtoReflect.Descriptor instead.
func (*HTLC) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{39}
+ return file_lightning_proto_rawDescGZIP(), []int{43}
}
func (x *HTLC) GetIncoming() bool {
@@ -4604,7 +4840,7 @@ type ChannelConstraints struct {
func (x *ChannelConstraints) Reset() {
*x = ChannelConstraints{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[40]
+ mi := &file_lightning_proto_msgTypes[44]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4617,7 +4853,7 @@ func (x *ChannelConstraints) String() string {
func (*ChannelConstraints) ProtoMessage() {}
func (x *ChannelConstraints) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[40]
+ mi := &file_lightning_proto_msgTypes[44]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4630,7 +4866,7 @@ func (x *ChannelConstraints) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelConstraints.ProtoReflect.Descriptor instead.
func (*ChannelConstraints) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{40}
+ return file_lightning_proto_rawDescGZIP(), []int{44}
}
func (x *ChannelConstraints) GetCsvDelay() uint32 {
@@ -4801,7 +5037,7 @@ type Channel struct {
func (x *Channel) Reset() {
*x = Channel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[41]
+ mi := &file_lightning_proto_msgTypes[45]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4814,7 +5050,7 @@ func (x *Channel) String() string {
func (*Channel) ProtoMessage() {}
func (x *Channel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[41]
+ mi := &file_lightning_proto_msgTypes[45]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4827,7 +5063,7 @@ func (x *Channel) ProtoReflect() protoreflect.Message {
// Deprecated: Use Channel.ProtoReflect.Descriptor instead.
func (*Channel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{41}
+ return file_lightning_proto_rawDescGZIP(), []int{45}
}
func (x *Channel) GetActive() bool {
@@ -5114,7 +5350,7 @@ type ListChannelsRequest struct {
func (x *ListChannelsRequest) Reset() {
*x = ListChannelsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[42]
+ mi := &file_lightning_proto_msgTypes[46]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5127,7 +5363,7 @@ func (x *ListChannelsRequest) String() string {
func (*ListChannelsRequest) ProtoMessage() {}
func (x *ListChannelsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[42]
+ mi := &file_lightning_proto_msgTypes[46]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5140,7 +5376,7 @@ func (x *ListChannelsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListChannelsRequest.ProtoReflect.Descriptor instead.
func (*ListChannelsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{42}
+ return file_lightning_proto_rawDescGZIP(), []int{46}
}
func (x *ListChannelsRequest) GetActiveOnly() bool {
@@ -5197,7 +5433,7 @@ type ListChannelsResponse struct {
func (x *ListChannelsResponse) Reset() {
*x = ListChannelsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[43]
+ mi := &file_lightning_proto_msgTypes[47]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5210,7 +5446,7 @@ func (x *ListChannelsResponse) String() string {
func (*ListChannelsResponse) ProtoMessage() {}
func (x *ListChannelsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[43]
+ mi := &file_lightning_proto_msgTypes[47]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5223,7 +5459,7 @@ func (x *ListChannelsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListChannelsResponse.ProtoReflect.Descriptor instead.
func (*ListChannelsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{43}
+ return file_lightning_proto_rawDescGZIP(), []int{47}
}
func (x *ListChannelsResponse) GetChannels() []*Channel {
@@ -5248,7 +5484,7 @@ type AliasMap struct {
func (x *AliasMap) Reset() {
*x = AliasMap{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[44]
+ mi := &file_lightning_proto_msgTypes[48]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5261,7 +5497,7 @@ func (x *AliasMap) String() string {
func (*AliasMap) ProtoMessage() {}
func (x *AliasMap) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[44]
+ mi := &file_lightning_proto_msgTypes[48]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5274,7 +5510,7 @@ func (x *AliasMap) ProtoReflect() protoreflect.Message {
// Deprecated: Use AliasMap.ProtoReflect.Descriptor instead.
func (*AliasMap) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{44}
+ return file_lightning_proto_rawDescGZIP(), []int{48}
}
func (x *AliasMap) GetBaseScid() uint64 {
@@ -5300,7 +5536,7 @@ type ListAliasesRequest struct {
func (x *ListAliasesRequest) Reset() {
*x = ListAliasesRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[45]
+ mi := &file_lightning_proto_msgTypes[49]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5313,7 +5549,7 @@ func (x *ListAliasesRequest) String() string {
func (*ListAliasesRequest) ProtoMessage() {}
func (x *ListAliasesRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[45]
+ mi := &file_lightning_proto_msgTypes[49]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5326,7 +5562,7 @@ func (x *ListAliasesRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListAliasesRequest.ProtoReflect.Descriptor instead.
func (*ListAliasesRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{45}
+ return file_lightning_proto_rawDescGZIP(), []int{49}
}
type ListAliasesResponse struct {
@@ -5340,7 +5576,7 @@ type ListAliasesResponse struct {
func (x *ListAliasesResponse) Reset() {
*x = ListAliasesResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[46]
+ mi := &file_lightning_proto_msgTypes[50]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5353,7 +5589,7 @@ func (x *ListAliasesResponse) String() string {
func (*ListAliasesResponse) ProtoMessage() {}
func (x *ListAliasesResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[46]
+ mi := &file_lightning_proto_msgTypes[50]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5366,7 +5602,7 @@ func (x *ListAliasesResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListAliasesResponse.ProtoReflect.Descriptor instead.
func (*ListAliasesResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{46}
+ return file_lightning_proto_rawDescGZIP(), []int{50}
}
func (x *ListAliasesResponse) GetAliasMaps() []*AliasMap {
@@ -5425,7 +5661,7 @@ type ChannelCloseSummary struct {
func (x *ChannelCloseSummary) Reset() {
*x = ChannelCloseSummary{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[47]
+ mi := &file_lightning_proto_msgTypes[51]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5438,7 +5674,7 @@ func (x *ChannelCloseSummary) String() string {
func (*ChannelCloseSummary) ProtoMessage() {}
func (x *ChannelCloseSummary) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[47]
+ mi := &file_lightning_proto_msgTypes[51]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5451,7 +5687,7 @@ func (x *ChannelCloseSummary) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelCloseSummary.ProtoReflect.Descriptor instead.
func (*ChannelCloseSummary) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{47}
+ return file_lightning_proto_rawDescGZIP(), []int{51}
}
func (x *ChannelCloseSummary) GetChannelPoint() string {
@@ -5587,7 +5823,7 @@ type Resolution struct {
func (x *Resolution) Reset() {
*x = Resolution{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[48]
+ mi := &file_lightning_proto_msgTypes[52]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5600,7 +5836,7 @@ func (x *Resolution) String() string {
func (*Resolution) ProtoMessage() {}
func (x *Resolution) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[48]
+ mi := &file_lightning_proto_msgTypes[52]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5613,7 +5849,7 @@ func (x *Resolution) ProtoReflect() protoreflect.Message {
// Deprecated: Use Resolution.ProtoReflect.Descriptor instead.
func (*Resolution) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{48}
+ return file_lightning_proto_rawDescGZIP(), []int{52}
}
func (x *Resolution) GetResolutionType() ResolutionType {
@@ -5667,7 +5903,7 @@ type ClosedChannelsRequest struct {
func (x *ClosedChannelsRequest) Reset() {
*x = ClosedChannelsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[49]
+ mi := &file_lightning_proto_msgTypes[53]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5680,7 +5916,7 @@ func (x *ClosedChannelsRequest) String() string {
func (*ClosedChannelsRequest) ProtoMessage() {}
func (x *ClosedChannelsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[49]
+ mi := &file_lightning_proto_msgTypes[53]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5693,7 +5929,7 @@ func (x *ClosedChannelsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ClosedChannelsRequest.ProtoReflect.Descriptor instead.
func (*ClosedChannelsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{49}
+ return file_lightning_proto_rawDescGZIP(), []int{53}
}
func (x *ClosedChannelsRequest) GetCooperative() bool {
@@ -5749,7 +5985,7 @@ type ClosedChannelsResponse struct {
func (x *ClosedChannelsResponse) Reset() {
*x = ClosedChannelsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[50]
+ mi := &file_lightning_proto_msgTypes[54]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5762,7 +5998,7 @@ func (x *ClosedChannelsResponse) String() string {
func (*ClosedChannelsResponse) ProtoMessage() {}
func (x *ClosedChannelsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[50]
+ mi := &file_lightning_proto_msgTypes[54]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5775,7 +6011,7 @@ func (x *ClosedChannelsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ClosedChannelsResponse.ProtoReflect.Descriptor instead.
func (*ClosedChannelsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{50}
+ return file_lightning_proto_rawDescGZIP(), []int{54}
}
func (x *ClosedChannelsResponse) GetChannels() []*ChannelCloseSummary {
@@ -5833,7 +6069,7 @@ type Peer struct {
func (x *Peer) Reset() {
*x = Peer{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[51]
+ mi := &file_lightning_proto_msgTypes[55]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5846,7 +6082,7 @@ func (x *Peer) String() string {
func (*Peer) ProtoMessage() {}
func (x *Peer) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[51]
+ mi := &file_lightning_proto_msgTypes[55]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5859,7 +6095,7 @@ func (x *Peer) ProtoReflect() protoreflect.Message {
// Deprecated: Use Peer.ProtoReflect.Descriptor instead.
func (*Peer) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{51}
+ return file_lightning_proto_rawDescGZIP(), []int{55}
}
func (x *Peer) GetPubKey() string {
@@ -5974,7 +6210,7 @@ type TimestampedError struct {
func (x *TimestampedError) Reset() {
*x = TimestampedError{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[52]
+ mi := &file_lightning_proto_msgTypes[56]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5987,7 +6223,7 @@ func (x *TimestampedError) String() string {
func (*TimestampedError) ProtoMessage() {}
func (x *TimestampedError) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[52]
+ mi := &file_lightning_proto_msgTypes[56]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6000,7 +6236,7 @@ func (x *TimestampedError) ProtoReflect() protoreflect.Message {
// Deprecated: Use TimestampedError.ProtoReflect.Descriptor instead.
func (*TimestampedError) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{52}
+ return file_lightning_proto_rawDescGZIP(), []int{56}
}
func (x *TimestampedError) GetTimestamp() uint64 {
@@ -6031,7 +6267,7 @@ type ListPeersRequest struct {
func (x *ListPeersRequest) Reset() {
*x = ListPeersRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[53]
+ mi := &file_lightning_proto_msgTypes[57]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6044,7 +6280,7 @@ func (x *ListPeersRequest) String() string {
func (*ListPeersRequest) ProtoMessage() {}
func (x *ListPeersRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[53]
+ mi := &file_lightning_proto_msgTypes[57]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6057,7 +6293,7 @@ func (x *ListPeersRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPeersRequest.ProtoReflect.Descriptor instead.
func (*ListPeersRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{53}
+ return file_lightning_proto_rawDescGZIP(), []int{57}
}
func (x *ListPeersRequest) GetLatestError() bool {
@@ -6079,7 +6315,7 @@ type ListPeersResponse struct {
func (x *ListPeersResponse) Reset() {
*x = ListPeersResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[54]
+ mi := &file_lightning_proto_msgTypes[58]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6092,7 +6328,7 @@ func (x *ListPeersResponse) String() string {
func (*ListPeersResponse) ProtoMessage() {}
func (x *ListPeersResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[54]
+ mi := &file_lightning_proto_msgTypes[58]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6105,7 +6341,7 @@ func (x *ListPeersResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPeersResponse.ProtoReflect.Descriptor instead.
func (*ListPeersResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{54}
+ return file_lightning_proto_rawDescGZIP(), []int{58}
}
func (x *ListPeersResponse) GetPeers() []*Peer {
@@ -6124,7 +6360,7 @@ type PeerEventSubscription struct {
func (x *PeerEventSubscription) Reset() {
*x = PeerEventSubscription{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[55]
+ mi := &file_lightning_proto_msgTypes[59]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6137,7 +6373,7 @@ func (x *PeerEventSubscription) String() string {
func (*PeerEventSubscription) ProtoMessage() {}
func (x *PeerEventSubscription) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[55]
+ mi := &file_lightning_proto_msgTypes[59]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6150,7 +6386,7 @@ func (x *PeerEventSubscription) ProtoReflect() protoreflect.Message {
// Deprecated: Use PeerEventSubscription.ProtoReflect.Descriptor instead.
func (*PeerEventSubscription) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{55}
+ return file_lightning_proto_rawDescGZIP(), []int{59}
}
type PeerEvent struct {
@@ -6166,7 +6402,7 @@ type PeerEvent struct {
func (x *PeerEvent) Reset() {
*x = PeerEvent{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[56]
+ mi := &file_lightning_proto_msgTypes[60]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6179,7 +6415,7 @@ func (x *PeerEvent) String() string {
func (*PeerEvent) ProtoMessage() {}
func (x *PeerEvent) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[56]
+ mi := &file_lightning_proto_msgTypes[60]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6192,7 +6428,7 @@ func (x *PeerEvent) ProtoReflect() protoreflect.Message {
// Deprecated: Use PeerEvent.ProtoReflect.Descriptor instead.
func (*PeerEvent) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{56}
+ return file_lightning_proto_rawDescGZIP(), []int{60}
}
func (x *PeerEvent) GetPubKey() string {
@@ -6218,7 +6454,7 @@ type GetInfoRequest struct {
func (x *GetInfoRequest) Reset() {
*x = GetInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[57]
+ mi := &file_lightning_proto_msgTypes[61]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6231,7 +6467,7 @@ func (x *GetInfoRequest) String() string {
func (*GetInfoRequest) ProtoMessage() {}
func (x *GetInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[57]
+ mi := &file_lightning_proto_msgTypes[61]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6244,7 +6480,7 @@ func (x *GetInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetInfoRequest.ProtoReflect.Descriptor instead.
func (*GetInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{57}
+ return file_lightning_proto_rawDescGZIP(), []int{61}
}
type GetInfoResponse struct {
@@ -6303,7 +6539,7 @@ type GetInfoResponse struct {
func (x *GetInfoResponse) Reset() {
*x = GetInfoResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[58]
+ mi := &file_lightning_proto_msgTypes[62]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6316,7 +6552,7 @@ func (x *GetInfoResponse) String() string {
func (*GetInfoResponse) ProtoMessage() {}
func (x *GetInfoResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[58]
+ mi := &file_lightning_proto_msgTypes[62]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6329,7 +6565,7 @@ func (x *GetInfoResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetInfoResponse.ProtoReflect.Descriptor instead.
func (*GetInfoResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{58}
+ return file_lightning_proto_rawDescGZIP(), []int{62}
}
func (x *GetInfoResponse) GetVersion() string {
@@ -6482,7 +6718,7 @@ type GetDebugInfoRequest struct {
func (x *GetDebugInfoRequest) Reset() {
*x = GetDebugInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[59]
+ mi := &file_lightning_proto_msgTypes[63]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6495,7 +6731,7 @@ func (x *GetDebugInfoRequest) String() string {
func (*GetDebugInfoRequest) ProtoMessage() {}
func (x *GetDebugInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[59]
+ mi := &file_lightning_proto_msgTypes[63]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6508,7 +6744,7 @@ func (x *GetDebugInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetDebugInfoRequest.ProtoReflect.Descriptor instead.
func (*GetDebugInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{59}
+ return file_lightning_proto_rawDescGZIP(), []int{63}
}
type GetDebugInfoResponse struct {
@@ -6523,7 +6759,7 @@ type GetDebugInfoResponse struct {
func (x *GetDebugInfoResponse) Reset() {
*x = GetDebugInfoResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[60]
+ mi := &file_lightning_proto_msgTypes[64]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6536,7 +6772,7 @@ func (x *GetDebugInfoResponse) String() string {
func (*GetDebugInfoResponse) ProtoMessage() {}
func (x *GetDebugInfoResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[60]
+ mi := &file_lightning_proto_msgTypes[64]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6549,7 +6785,7 @@ func (x *GetDebugInfoResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetDebugInfoResponse.ProtoReflect.Descriptor instead.
func (*GetDebugInfoResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{60}
+ return file_lightning_proto_rawDescGZIP(), []int{64}
}
func (x *GetDebugInfoResponse) GetConfig() map[string]string {
@@ -6575,7 +6811,7 @@ type GetRecoveryInfoRequest struct {
func (x *GetRecoveryInfoRequest) Reset() {
*x = GetRecoveryInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[61]
+ mi := &file_lightning_proto_msgTypes[65]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6588,7 +6824,7 @@ func (x *GetRecoveryInfoRequest) String() string {
func (*GetRecoveryInfoRequest) ProtoMessage() {}
func (x *GetRecoveryInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[61]
+ mi := &file_lightning_proto_msgTypes[65]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6601,7 +6837,7 @@ func (x *GetRecoveryInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetRecoveryInfoRequest.ProtoReflect.Descriptor instead.
func (*GetRecoveryInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{61}
+ return file_lightning_proto_rawDescGZIP(), []int{65}
}
type GetRecoveryInfoResponse struct {
@@ -6620,7 +6856,7 @@ type GetRecoveryInfoResponse struct {
func (x *GetRecoveryInfoResponse) Reset() {
*x = GetRecoveryInfoResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[62]
+ mi := &file_lightning_proto_msgTypes[66]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6633,7 +6869,7 @@ func (x *GetRecoveryInfoResponse) String() string {
func (*GetRecoveryInfoResponse) ProtoMessage() {}
func (x *GetRecoveryInfoResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[62]
+ mi := &file_lightning_proto_msgTypes[66]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6646,7 +6882,7 @@ func (x *GetRecoveryInfoResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetRecoveryInfoResponse.ProtoReflect.Descriptor instead.
func (*GetRecoveryInfoResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{62}
+ return file_lightning_proto_rawDescGZIP(), []int{66}
}
func (x *GetRecoveryInfoResponse) GetRecoveryMode() bool {
@@ -6687,7 +6923,7 @@ type Chain struct {
func (x *Chain) Reset() {
*x = Chain{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[63]
+ mi := &file_lightning_proto_msgTypes[67]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6700,7 +6936,7 @@ func (x *Chain) String() string {
func (*Chain) ProtoMessage() {}
func (x *Chain) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[63]
+ mi := &file_lightning_proto_msgTypes[67]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6713,7 +6949,7 @@ func (x *Chain) ProtoReflect() protoreflect.Message {
// Deprecated: Use Chain.ProtoReflect.Descriptor instead.
func (*Chain) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{63}
+ return file_lightning_proto_rawDescGZIP(), []int{67}
}
// Deprecated: Marked as deprecated in lightning.proto.
@@ -6742,7 +6978,7 @@ type ChannelOpenUpdate struct {
func (x *ChannelOpenUpdate) Reset() {
*x = ChannelOpenUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[64]
+ mi := &file_lightning_proto_msgTypes[68]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6755,7 +6991,7 @@ func (x *ChannelOpenUpdate) String() string {
func (*ChannelOpenUpdate) ProtoMessage() {}
func (x *ChannelOpenUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[64]
+ mi := &file_lightning_proto_msgTypes[68]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6768,7 +7004,7 @@ func (x *ChannelOpenUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelOpenUpdate.ProtoReflect.Descriptor instead.
func (*ChannelOpenUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{64}
+ return file_lightning_proto_rawDescGZIP(), []int{68}
}
func (x *ChannelOpenUpdate) GetChannelPoint() *ChannelPoint {
@@ -6799,7 +7035,7 @@ type CloseOutput struct {
func (x *CloseOutput) Reset() {
*x = CloseOutput{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[65]
+ mi := &file_lightning_proto_msgTypes[69]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6812,7 +7048,7 @@ func (x *CloseOutput) String() string {
func (*CloseOutput) ProtoMessage() {}
func (x *CloseOutput) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[65]
+ mi := &file_lightning_proto_msgTypes[69]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6825,7 +7061,7 @@ func (x *CloseOutput) ProtoReflect() protoreflect.Message {
// Deprecated: Use CloseOutput.ProtoReflect.Descriptor instead.
func (*CloseOutput) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{65}
+ return file_lightning_proto_rawDescGZIP(), []int{69}
}
func (x *CloseOutput) GetAmountSat() int64 {
@@ -6876,7 +7112,7 @@ type ChannelCloseUpdate struct {
func (x *ChannelCloseUpdate) Reset() {
*x = ChannelCloseUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[66]
+ mi := &file_lightning_proto_msgTypes[70]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6889,7 +7125,7 @@ func (x *ChannelCloseUpdate) String() string {
func (*ChannelCloseUpdate) ProtoMessage() {}
func (x *ChannelCloseUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[66]
+ mi := &file_lightning_proto_msgTypes[70]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6902,7 +7138,7 @@ func (x *ChannelCloseUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelCloseUpdate.ProtoReflect.Descriptor instead.
func (*ChannelCloseUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{66}
+ return file_lightning_proto_rawDescGZIP(), []int{70}
}
func (x *ChannelCloseUpdate) GetClosingTxid() []byte {
@@ -6986,7 +7222,7 @@ type CloseChannelRequest struct {
func (x *CloseChannelRequest) Reset() {
*x = CloseChannelRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[67]
+ mi := &file_lightning_proto_msgTypes[71]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6999,7 +7235,7 @@ func (x *CloseChannelRequest) String() string {
func (*CloseChannelRequest) ProtoMessage() {}
func (x *CloseChannelRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[67]
+ mi := &file_lightning_proto_msgTypes[71]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7012,7 +7248,7 @@ func (x *CloseChannelRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use CloseChannelRequest.ProtoReflect.Descriptor instead.
func (*CloseChannelRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{67}
+ return file_lightning_proto_rawDescGZIP(), []int{71}
}
func (x *CloseChannelRequest) GetChannelPoint() *ChannelPoint {
@@ -7088,7 +7324,7 @@ type CloseStatusUpdate struct {
func (x *CloseStatusUpdate) Reset() {
*x = CloseStatusUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[68]
+ mi := &file_lightning_proto_msgTypes[72]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7101,7 +7337,7 @@ func (x *CloseStatusUpdate) String() string {
func (*CloseStatusUpdate) ProtoMessage() {}
func (x *CloseStatusUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[68]
+ mi := &file_lightning_proto_msgTypes[72]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7114,7 +7350,7 @@ func (x *CloseStatusUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use CloseStatusUpdate.ProtoReflect.Descriptor instead.
func (*CloseStatusUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{68}
+ return file_lightning_proto_rawDescGZIP(), []int{72}
}
func (m *CloseStatusUpdate) GetUpdate() isCloseStatusUpdate_Update {
@@ -7181,7 +7417,7 @@ type PendingUpdate struct {
func (x *PendingUpdate) Reset() {
*x = PendingUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[69]
+ mi := &file_lightning_proto_msgTypes[73]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7194,7 +7430,7 @@ func (x *PendingUpdate) String() string {
func (*PendingUpdate) ProtoMessage() {}
func (x *PendingUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[69]
+ mi := &file_lightning_proto_msgTypes[73]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7207,7 +7443,7 @@ func (x *PendingUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use PendingUpdate.ProtoReflect.Descriptor instead.
func (*PendingUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{69}
+ return file_lightning_proto_rawDescGZIP(), []int{73}
}
func (x *PendingUpdate) GetTxid() []byte {
@@ -7252,7 +7488,7 @@ type InstantUpdate struct {
func (x *InstantUpdate) Reset() {
*x = InstantUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[70]
+ mi := &file_lightning_proto_msgTypes[74]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7265,7 +7501,7 @@ func (x *InstantUpdate) String() string {
func (*InstantUpdate) ProtoMessage() {}
func (x *InstantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[70]
+ mi := &file_lightning_proto_msgTypes[74]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7278,7 +7514,7 @@ func (x *InstantUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use InstantUpdate.ProtoReflect.Descriptor instead.
func (*InstantUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{70}
+ return file_lightning_proto_rawDescGZIP(), []int{74}
}
func (x *InstantUpdate) GetNumPendingHtlcs() int32 {
@@ -7309,7 +7545,7 @@ type ReadyForPsbtFunding struct {
func (x *ReadyForPsbtFunding) Reset() {
*x = ReadyForPsbtFunding{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[71]
+ mi := &file_lightning_proto_msgTypes[75]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7322,7 +7558,7 @@ func (x *ReadyForPsbtFunding) String() string {
func (*ReadyForPsbtFunding) ProtoMessage() {}
func (x *ReadyForPsbtFunding) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[71]
+ mi := &file_lightning_proto_msgTypes[75]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7335,7 +7571,7 @@ func (x *ReadyForPsbtFunding) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReadyForPsbtFunding.ProtoReflect.Descriptor instead.
func (*ReadyForPsbtFunding) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{71}
+ return file_lightning_proto_rawDescGZIP(), []int{75}
}
func (x *ReadyForPsbtFunding) GetFundingAddress() string {
@@ -7387,7 +7623,7 @@ type BatchOpenChannelRequest struct {
func (x *BatchOpenChannelRequest) Reset() {
*x = BatchOpenChannelRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[72]
+ mi := &file_lightning_proto_msgTypes[76]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7400,7 +7636,7 @@ func (x *BatchOpenChannelRequest) String() string {
func (*BatchOpenChannelRequest) ProtoMessage() {}
func (x *BatchOpenChannelRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[72]
+ mi := &file_lightning_proto_msgTypes[76]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7413,7 +7649,7 @@ func (x *BatchOpenChannelRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use BatchOpenChannelRequest.ProtoReflect.Descriptor instead.
func (*BatchOpenChannelRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{72}
+ return file_lightning_proto_rawDescGZIP(), []int{76}
}
func (x *BatchOpenChannelRequest) GetChannels() []*BatchOpenChannel {
@@ -7545,7 +7781,7 @@ type BatchOpenChannel struct {
func (x *BatchOpenChannel) Reset() {
*x = BatchOpenChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[73]
+ mi := &file_lightning_proto_msgTypes[77]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7558,7 +7794,7 @@ func (x *BatchOpenChannel) String() string {
func (*BatchOpenChannel) ProtoMessage() {}
func (x *BatchOpenChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[73]
+ mi := &file_lightning_proto_msgTypes[77]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7571,7 +7807,7 @@ func (x *BatchOpenChannel) ProtoReflect() protoreflect.Message {
// Deprecated: Use BatchOpenChannel.ProtoReflect.Descriptor instead.
func (*BatchOpenChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{73}
+ return file_lightning_proto_rawDescGZIP(), []int{77}
}
func (x *BatchOpenChannel) GetNodePubkey() []byte {
@@ -7725,7 +7961,7 @@ type BatchOpenChannelResponse struct {
func (x *BatchOpenChannelResponse) Reset() {
*x = BatchOpenChannelResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[74]
+ mi := &file_lightning_proto_msgTypes[78]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7738,7 +7974,7 @@ func (x *BatchOpenChannelResponse) String() string {
func (*BatchOpenChannelResponse) ProtoMessage() {}
func (x *BatchOpenChannelResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[74]
+ mi := &file_lightning_proto_msgTypes[78]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7751,7 +7987,7 @@ func (x *BatchOpenChannelResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use BatchOpenChannelResponse.ProtoReflect.Descriptor instead.
func (*BatchOpenChannelResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{74}
+ return file_lightning_proto_rawDescGZIP(), []int{78}
}
func (x *BatchOpenChannelResponse) GetPendingChannels() []*PendingUpdate {
@@ -7872,7 +8108,7 @@ type OpenChannelRequest struct {
func (x *OpenChannelRequest) Reset() {
*x = OpenChannelRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[75]
+ mi := &file_lightning_proto_msgTypes[79]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7885,7 +8121,7 @@ func (x *OpenChannelRequest) String() string {
func (*OpenChannelRequest) ProtoMessage() {}
func (x *OpenChannelRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[75]
+ mi := &file_lightning_proto_msgTypes[79]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7898,7 +8134,7 @@ func (x *OpenChannelRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use OpenChannelRequest.ProtoReflect.Descriptor instead.
func (*OpenChannelRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{75}
+ return file_lightning_proto_rawDescGZIP(), []int{79}
}
func (x *OpenChannelRequest) GetSatPerVbyte() uint64 {
@@ -8118,7 +8354,7 @@ type OpenStatusUpdate struct {
func (x *OpenStatusUpdate) Reset() {
*x = OpenStatusUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[76]
+ mi := &file_lightning_proto_msgTypes[80]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8131,7 +8367,7 @@ func (x *OpenStatusUpdate) String() string {
func (*OpenStatusUpdate) ProtoMessage() {}
func (x *OpenStatusUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[76]
+ mi := &file_lightning_proto_msgTypes[80]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8144,7 +8380,7 @@ func (x *OpenStatusUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use OpenStatusUpdate.ProtoReflect.Descriptor instead.
func (*OpenStatusUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{76}
+ return file_lightning_proto_rawDescGZIP(), []int{80}
}
func (m *OpenStatusUpdate) GetUpdate() isOpenStatusUpdate_Update {
@@ -8224,7 +8460,7 @@ type KeyLocator struct {
func (x *KeyLocator) Reset() {
*x = KeyLocator{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[77]
+ mi := &file_lightning_proto_msgTypes[81]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8237,7 +8473,7 @@ func (x *KeyLocator) String() string {
func (*KeyLocator) ProtoMessage() {}
func (x *KeyLocator) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[77]
+ mi := &file_lightning_proto_msgTypes[81]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8250,7 +8486,7 @@ func (x *KeyLocator) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeyLocator.ProtoReflect.Descriptor instead.
func (*KeyLocator) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{77}
+ return file_lightning_proto_rawDescGZIP(), []int{81}
}
func (x *KeyLocator) GetKeyFamily() int32 {
@@ -8281,7 +8517,7 @@ type KeyDescriptor struct {
func (x *KeyDescriptor) Reset() {
*x = KeyDescriptor{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[78]
+ mi := &file_lightning_proto_msgTypes[82]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8294,7 +8530,7 @@ func (x *KeyDescriptor) String() string {
func (*KeyDescriptor) ProtoMessage() {}
func (x *KeyDescriptor) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[78]
+ mi := &file_lightning_proto_msgTypes[82]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8307,7 +8543,7 @@ func (x *KeyDescriptor) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeyDescriptor.ProtoReflect.Descriptor instead.
func (*KeyDescriptor) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{78}
+ return file_lightning_proto_rawDescGZIP(), []int{82}
}
func (x *KeyDescriptor) GetRawKeyBytes() []byte {
@@ -8356,7 +8592,7 @@ type ChanPointShim struct {
func (x *ChanPointShim) Reset() {
*x = ChanPointShim{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[79]
+ mi := &file_lightning_proto_msgTypes[83]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8369,7 +8605,7 @@ func (x *ChanPointShim) String() string {
func (*ChanPointShim) ProtoMessage() {}
func (x *ChanPointShim) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[79]
+ mi := &file_lightning_proto_msgTypes[83]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8382,7 +8618,7 @@ func (x *ChanPointShim) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChanPointShim.ProtoReflect.Descriptor instead.
func (*ChanPointShim) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{79}
+ return file_lightning_proto_rawDescGZIP(), []int{83}
}
func (x *ChanPointShim) GetAmt() int64 {
@@ -8458,7 +8694,7 @@ type PsbtShim struct {
func (x *PsbtShim) Reset() {
*x = PsbtShim{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[80]
+ mi := &file_lightning_proto_msgTypes[84]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8471,7 +8707,7 @@ func (x *PsbtShim) String() string {
func (*PsbtShim) ProtoMessage() {}
func (x *PsbtShim) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[80]
+ mi := &file_lightning_proto_msgTypes[84]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8484,7 +8720,7 @@ func (x *PsbtShim) ProtoReflect() protoreflect.Message {
// Deprecated: Use PsbtShim.ProtoReflect.Descriptor instead.
func (*PsbtShim) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{80}
+ return file_lightning_proto_rawDescGZIP(), []int{84}
}
func (x *PsbtShim) GetPendingChanId() []byte {
@@ -8523,7 +8759,7 @@ type FundingShim struct {
func (x *FundingShim) Reset() {
*x = FundingShim{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[81]
+ mi := &file_lightning_proto_msgTypes[85]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8536,7 +8772,7 @@ func (x *FundingShim) String() string {
func (*FundingShim) ProtoMessage() {}
func (x *FundingShim) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[81]
+ mi := &file_lightning_proto_msgTypes[85]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8549,7 +8785,7 @@ func (x *FundingShim) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingShim.ProtoReflect.Descriptor instead.
func (*FundingShim) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{81}
+ return file_lightning_proto_rawDescGZIP(), []int{85}
}
func (m *FundingShim) GetShim() isFundingShim_Shim {
@@ -8605,7 +8841,7 @@ type FundingShimCancel struct {
func (x *FundingShimCancel) Reset() {
*x = FundingShimCancel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[82]
+ mi := &file_lightning_proto_msgTypes[86]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8618,7 +8854,7 @@ func (x *FundingShimCancel) String() string {
func (*FundingShimCancel) ProtoMessage() {}
func (x *FundingShimCancel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[82]
+ mi := &file_lightning_proto_msgTypes[86]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8631,7 +8867,7 @@ func (x *FundingShimCancel) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingShimCancel.ProtoReflect.Descriptor instead.
func (*FundingShimCancel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{82}
+ return file_lightning_proto_rawDescGZIP(), []int{86}
}
func (x *FundingShimCancel) GetPendingChanId() []byte {
@@ -8668,7 +8904,7 @@ type FundingPsbtVerify struct {
func (x *FundingPsbtVerify) Reset() {
*x = FundingPsbtVerify{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[83]
+ mi := &file_lightning_proto_msgTypes[87]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8681,7 +8917,7 @@ func (x *FundingPsbtVerify) String() string {
func (*FundingPsbtVerify) ProtoMessage() {}
func (x *FundingPsbtVerify) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[83]
+ mi := &file_lightning_proto_msgTypes[87]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8694,7 +8930,7 @@ func (x *FundingPsbtVerify) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingPsbtVerify.ProtoReflect.Descriptor instead.
func (*FundingPsbtVerify) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{83}
+ return file_lightning_proto_rawDescGZIP(), []int{87}
}
func (x *FundingPsbtVerify) GetFundedPsbt() []byte {
@@ -8738,7 +8974,7 @@ type FundingPsbtFinalize struct {
func (x *FundingPsbtFinalize) Reset() {
*x = FundingPsbtFinalize{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[84]
+ mi := &file_lightning_proto_msgTypes[88]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8751,7 +8987,7 @@ func (x *FundingPsbtFinalize) String() string {
func (*FundingPsbtFinalize) ProtoMessage() {}
func (x *FundingPsbtFinalize) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[84]
+ mi := &file_lightning_proto_msgTypes[88]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8764,7 +9000,7 @@ func (x *FundingPsbtFinalize) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingPsbtFinalize.ProtoReflect.Descriptor instead.
func (*FundingPsbtFinalize) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{84}
+ return file_lightning_proto_rawDescGZIP(), []int{88}
}
func (x *FundingPsbtFinalize) GetSignedPsbt() []byte {
@@ -8805,7 +9041,7 @@ type FundingTransitionMsg struct {
func (x *FundingTransitionMsg) Reset() {
*x = FundingTransitionMsg{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[85]
+ mi := &file_lightning_proto_msgTypes[89]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8818,7 +9054,7 @@ func (x *FundingTransitionMsg) String() string {
func (*FundingTransitionMsg) ProtoMessage() {}
func (x *FundingTransitionMsg) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[85]
+ mi := &file_lightning_proto_msgTypes[89]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8831,7 +9067,7 @@ func (x *FundingTransitionMsg) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingTransitionMsg.ProtoReflect.Descriptor instead.
func (*FundingTransitionMsg) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{85}
+ return file_lightning_proto_rawDescGZIP(), []int{89}
}
func (m *FundingTransitionMsg) GetTrigger() isFundingTransitionMsg_Trigger {
@@ -8917,7 +9153,7 @@ type FundingStateStepResp struct {
func (x *FundingStateStepResp) Reset() {
*x = FundingStateStepResp{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[86]
+ mi := &file_lightning_proto_msgTypes[90]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8930,7 +9166,7 @@ func (x *FundingStateStepResp) String() string {
func (*FundingStateStepResp) ProtoMessage() {}
func (x *FundingStateStepResp) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[86]
+ mi := &file_lightning_proto_msgTypes[90]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8943,7 +9179,7 @@ func (x *FundingStateStepResp) ProtoReflect() protoreflect.Message {
// Deprecated: Use FundingStateStepResp.ProtoReflect.Descriptor instead.
func (*FundingStateStepResp) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{86}
+ return file_lightning_proto_rawDescGZIP(), []int{90}
}
type PendingHTLC struct {
@@ -8970,7 +9206,7 @@ type PendingHTLC struct {
func (x *PendingHTLC) Reset() {
*x = PendingHTLC{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[87]
+ mi := &file_lightning_proto_msgTypes[91]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8983,7 +9219,7 @@ func (x *PendingHTLC) String() string {
func (*PendingHTLC) ProtoMessage() {}
func (x *PendingHTLC) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[87]
+ mi := &file_lightning_proto_msgTypes[91]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8996,7 +9232,7 @@ func (x *PendingHTLC) ProtoReflect() protoreflect.Message {
// Deprecated: Use PendingHTLC.ProtoReflect.Descriptor instead.
func (*PendingHTLC) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{87}
+ return file_lightning_proto_rawDescGZIP(), []int{91}
}
func (x *PendingHTLC) GetIncoming() bool {
@@ -9054,7 +9290,7 @@ type PendingChannelsRequest struct {
func (x *PendingChannelsRequest) Reset() {
*x = PendingChannelsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[88]
+ mi := &file_lightning_proto_msgTypes[92]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9067,7 +9303,7 @@ func (x *PendingChannelsRequest) String() string {
func (*PendingChannelsRequest) ProtoMessage() {}
func (x *PendingChannelsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[88]
+ mi := &file_lightning_proto_msgTypes[92]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9080,7 +9316,7 @@ func (x *PendingChannelsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PendingChannelsRequest.ProtoReflect.Descriptor instead.
func (*PendingChannelsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{88}
+ return file_lightning_proto_rawDescGZIP(), []int{92}
}
func (x *PendingChannelsRequest) GetIncludeRawTx() bool {
@@ -9114,7 +9350,7 @@ type PendingChannelsResponse struct {
func (x *PendingChannelsResponse) Reset() {
*x = PendingChannelsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[89]
+ mi := &file_lightning_proto_msgTypes[93]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9127,7 +9363,7 @@ func (x *PendingChannelsResponse) String() string {
func (*PendingChannelsResponse) ProtoMessage() {}
func (x *PendingChannelsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[89]
+ mi := &file_lightning_proto_msgTypes[93]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9140,7 +9376,7 @@ func (x *PendingChannelsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PendingChannelsResponse.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89}
+ return file_lightning_proto_rawDescGZIP(), []int{93}
}
func (x *PendingChannelsResponse) GetTotalLimboBalance() int64 {
@@ -9188,7 +9424,7 @@ type ChannelEventSubscription struct {
func (x *ChannelEventSubscription) Reset() {
*x = ChannelEventSubscription{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[90]
+ mi := &file_lightning_proto_msgTypes[94]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9201,7 +9437,7 @@ func (x *ChannelEventSubscription) String() string {
func (*ChannelEventSubscription) ProtoMessage() {}
func (x *ChannelEventSubscription) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[90]
+ mi := &file_lightning_proto_msgTypes[94]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9214,7 +9450,7 @@ func (x *ChannelEventSubscription) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelEventSubscription.ProtoReflect.Descriptor instead.
func (*ChannelEventSubscription) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{90}
+ return file_lightning_proto_rawDescGZIP(), []int{94}
}
type ChannelEventUpdate struct {
@@ -9238,7 +9474,7 @@ type ChannelEventUpdate struct {
func (x *ChannelEventUpdate) Reset() {
*x = ChannelEventUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[91]
+ mi := &file_lightning_proto_msgTypes[95]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9251,7 +9487,7 @@ func (x *ChannelEventUpdate) String() string {
func (*ChannelEventUpdate) ProtoMessage() {}
func (x *ChannelEventUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[91]
+ mi := &file_lightning_proto_msgTypes[95]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9264,7 +9500,7 @@ func (x *ChannelEventUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelEventUpdate.ProtoReflect.Descriptor instead.
func (*ChannelEventUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{91}
+ return file_lightning_proto_rawDescGZIP(), []int{95}
}
func (m *ChannelEventUpdate) GetChannel() isChannelEventUpdate_Channel {
@@ -9390,7 +9626,7 @@ type WalletAccountBalance struct {
func (x *WalletAccountBalance) Reset() {
*x = WalletAccountBalance{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[92]
+ mi := &file_lightning_proto_msgTypes[96]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9403,7 +9639,7 @@ func (x *WalletAccountBalance) String() string {
func (*WalletAccountBalance) ProtoMessage() {}
func (x *WalletAccountBalance) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[92]
+ mi := &file_lightning_proto_msgTypes[96]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9416,7 +9652,7 @@ func (x *WalletAccountBalance) ProtoReflect() protoreflect.Message {
// Deprecated: Use WalletAccountBalance.ProtoReflect.Descriptor instead.
func (*WalletAccountBalance) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{92}
+ return file_lightning_proto_rawDescGZIP(), []int{96}
}
func (x *WalletAccountBalance) GetConfirmedBalance() int64 {
@@ -9450,7 +9686,7 @@ type WalletBalanceRequest struct {
func (x *WalletBalanceRequest) Reset() {
*x = WalletBalanceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[93]
+ mi := &file_lightning_proto_msgTypes[97]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9463,7 +9699,7 @@ func (x *WalletBalanceRequest) String() string {
func (*WalletBalanceRequest) ProtoMessage() {}
func (x *WalletBalanceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[93]
+ mi := &file_lightning_proto_msgTypes[97]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9476,7 +9712,7 @@ func (x *WalletBalanceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WalletBalanceRequest.ProtoReflect.Descriptor instead.
func (*WalletBalanceRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{93}
+ return file_lightning_proto_rawDescGZIP(), []int{97}
}
func (x *WalletBalanceRequest) GetAccount() string {
@@ -9516,7 +9752,7 @@ type WalletBalanceResponse struct {
func (x *WalletBalanceResponse) Reset() {
*x = WalletBalanceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[94]
+ mi := &file_lightning_proto_msgTypes[98]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9529,7 +9765,7 @@ func (x *WalletBalanceResponse) String() string {
func (*WalletBalanceResponse) ProtoMessage() {}
func (x *WalletBalanceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[94]
+ mi := &file_lightning_proto_msgTypes[98]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9542,7 +9778,7 @@ func (x *WalletBalanceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WalletBalanceResponse.ProtoReflect.Descriptor instead.
func (*WalletBalanceResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{94}
+ return file_lightning_proto_rawDescGZIP(), []int{98}
}
func (x *WalletBalanceResponse) GetTotalBalance() int64 {
@@ -9601,7 +9837,7 @@ type Amount struct {
func (x *Amount) Reset() {
*x = Amount{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[95]
+ mi := &file_lightning_proto_msgTypes[99]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9614,7 +9850,7 @@ func (x *Amount) String() string {
func (*Amount) ProtoMessage() {}
func (x *Amount) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[95]
+ mi := &file_lightning_proto_msgTypes[99]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9627,7 +9863,7 @@ func (x *Amount) ProtoReflect() protoreflect.Message {
// Deprecated: Use Amount.ProtoReflect.Descriptor instead.
func (*Amount) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{95}
+ return file_lightning_proto_rawDescGZIP(), []int{99}
}
func (x *Amount) GetSat() uint64 {
@@ -9653,7 +9889,7 @@ type ChannelBalanceRequest struct {
func (x *ChannelBalanceRequest) Reset() {
*x = ChannelBalanceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[96]
+ mi := &file_lightning_proto_msgTypes[100]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9666,7 +9902,7 @@ func (x *ChannelBalanceRequest) String() string {
func (*ChannelBalanceRequest) ProtoMessage() {}
func (x *ChannelBalanceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[96]
+ mi := &file_lightning_proto_msgTypes[100]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9679,7 +9915,7 @@ func (x *ChannelBalanceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelBalanceRequest.ProtoReflect.Descriptor instead.
func (*ChannelBalanceRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{96}
+ return file_lightning_proto_rawDescGZIP(), []int{100}
}
type ChannelBalanceResponse struct {
@@ -9715,7 +9951,7 @@ type ChannelBalanceResponse struct {
func (x *ChannelBalanceResponse) Reset() {
*x = ChannelBalanceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[97]
+ mi := &file_lightning_proto_msgTypes[101]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9728,7 +9964,7 @@ func (x *ChannelBalanceResponse) String() string {
func (*ChannelBalanceResponse) ProtoMessage() {}
func (x *ChannelBalanceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[97]
+ mi := &file_lightning_proto_msgTypes[101]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9741,7 +9977,7 @@ func (x *ChannelBalanceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelBalanceResponse.ProtoReflect.Descriptor instead.
func (*ChannelBalanceResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{97}
+ return file_lightning_proto_rawDescGZIP(), []int{101}
}
// Deprecated: Marked as deprecated in lightning.proto.
@@ -9897,7 +10133,7 @@ type QueryRoutesRequest struct {
func (x *QueryRoutesRequest) Reset() {
*x = QueryRoutesRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[98]
+ mi := &file_lightning_proto_msgTypes[102]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9910,7 +10146,7 @@ func (x *QueryRoutesRequest) String() string {
func (*QueryRoutesRequest) ProtoMessage() {}
func (x *QueryRoutesRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[98]
+ mi := &file_lightning_proto_msgTypes[102]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9923,7 +10159,7 @@ func (x *QueryRoutesRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use QueryRoutesRequest.ProtoReflect.Descriptor instead.
func (*QueryRoutesRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{98}
+ return file_lightning_proto_rawDescGZIP(), []int{102}
}
func (x *QueryRoutesRequest) GetPubKey() string {
@@ -10077,7 +10313,7 @@ type NodePair struct {
func (x *NodePair) Reset() {
*x = NodePair{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[99]
+ mi := &file_lightning_proto_msgTypes[103]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10090,7 +10326,7 @@ func (x *NodePair) String() string {
func (*NodePair) ProtoMessage() {}
func (x *NodePair) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[99]
+ mi := &file_lightning_proto_msgTypes[103]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10103,7 +10339,7 @@ func (x *NodePair) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodePair.ProtoReflect.Descriptor instead.
func (*NodePair) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{99}
+ return file_lightning_proto_rawDescGZIP(), []int{103}
}
func (x *NodePair) GetFrom() []byte {
@@ -10137,7 +10373,7 @@ type EdgeLocator struct {
func (x *EdgeLocator) Reset() {
*x = EdgeLocator{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[100]
+ mi := &file_lightning_proto_msgTypes[104]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10150,7 +10386,7 @@ func (x *EdgeLocator) String() string {
func (*EdgeLocator) ProtoMessage() {}
func (x *EdgeLocator) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[100]
+ mi := &file_lightning_proto_msgTypes[104]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10163,7 +10399,7 @@ func (x *EdgeLocator) ProtoReflect() protoreflect.Message {
// Deprecated: Use EdgeLocator.ProtoReflect.Descriptor instead.
func (*EdgeLocator) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{100}
+ return file_lightning_proto_rawDescGZIP(), []int{104}
}
func (x *EdgeLocator) GetChannelId() uint64 {
@@ -10196,7 +10432,7 @@ type QueryRoutesResponse struct {
func (x *QueryRoutesResponse) Reset() {
*x = QueryRoutesResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[101]
+ mi := &file_lightning_proto_msgTypes[105]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10209,7 +10445,7 @@ func (x *QueryRoutesResponse) String() string {
func (*QueryRoutesResponse) ProtoMessage() {}
func (x *QueryRoutesResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[101]
+ mi := &file_lightning_proto_msgTypes[105]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10222,7 +10458,7 @@ func (x *QueryRoutesResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use QueryRoutesResponse.ProtoReflect.Descriptor instead.
func (*QueryRoutesResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{101}
+ return file_lightning_proto_rawDescGZIP(), []int{105}
}
func (x *QueryRoutesResponse) GetRoutes() []*Route {
@@ -10306,7 +10542,7 @@ type Hop struct {
func (x *Hop) Reset() {
*x = Hop{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[102]
+ mi := &file_lightning_proto_msgTypes[106]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10319,7 +10555,7 @@ func (x *Hop) String() string {
func (*Hop) ProtoMessage() {}
func (x *Hop) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[102]
+ mi := &file_lightning_proto_msgTypes[106]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10332,7 +10568,7 @@ func (x *Hop) ProtoReflect() protoreflect.Message {
// Deprecated: Use Hop.ProtoReflect.Descriptor instead.
func (*Hop) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{102}
+ return file_lightning_proto_rawDescGZIP(), []int{106}
}
func (x *Hop) GetChanId() uint64 {
@@ -10472,7 +10708,7 @@ type MPPRecord struct {
func (x *MPPRecord) Reset() {
*x = MPPRecord{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[103]
+ mi := &file_lightning_proto_msgTypes[107]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10485,7 +10721,7 @@ func (x *MPPRecord) String() string {
func (*MPPRecord) ProtoMessage() {}
func (x *MPPRecord) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[103]
+ mi := &file_lightning_proto_msgTypes[107]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10498,7 +10734,7 @@ func (x *MPPRecord) ProtoReflect() protoreflect.Message {
// Deprecated: Use MPPRecord.ProtoReflect.Descriptor instead.
func (*MPPRecord) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{103}
+ return file_lightning_proto_rawDescGZIP(), []int{107}
}
func (x *MPPRecord) GetPaymentAddr() []byte {
@@ -10528,7 +10764,7 @@ type AMPRecord struct {
func (x *AMPRecord) Reset() {
*x = AMPRecord{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[104]
+ mi := &file_lightning_proto_msgTypes[108]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10541,7 +10777,7 @@ func (x *AMPRecord) String() string {
func (*AMPRecord) ProtoMessage() {}
func (x *AMPRecord) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[104]
+ mi := &file_lightning_proto_msgTypes[108]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10554,7 +10790,7 @@ func (x *AMPRecord) ProtoReflect() protoreflect.Message {
// Deprecated: Use AMPRecord.ProtoReflect.Descriptor instead.
func (*AMPRecord) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{104}
+ return file_lightning_proto_rawDescGZIP(), []int{108}
}
func (x *AMPRecord) GetRootShare() []byte {
@@ -10626,7 +10862,7 @@ type Route struct {
func (x *Route) Reset() {
*x = Route{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[105]
+ mi := &file_lightning_proto_msgTypes[109]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10639,7 +10875,7 @@ func (x *Route) String() string {
func (*Route) ProtoMessage() {}
func (x *Route) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[105]
+ mi := &file_lightning_proto_msgTypes[109]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10652,7 +10888,7 @@ func (x *Route) ProtoReflect() protoreflect.Message {
// Deprecated: Use Route.ProtoReflect.Descriptor instead.
func (*Route) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{105}
+ return file_lightning_proto_rawDescGZIP(), []int{109}
}
func (x *Route) GetTotalTimeLock() uint32 {
@@ -10730,7 +10966,7 @@ type NodeInfoRequest struct {
func (x *NodeInfoRequest) Reset() {
*x = NodeInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[106]
+ mi := &file_lightning_proto_msgTypes[110]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10743,7 +10979,7 @@ func (x *NodeInfoRequest) String() string {
func (*NodeInfoRequest) ProtoMessage() {}
func (x *NodeInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[106]
+ mi := &file_lightning_proto_msgTypes[110]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10756,7 +10992,7 @@ func (x *NodeInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeInfoRequest.ProtoReflect.Descriptor instead.
func (*NodeInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{106}
+ return file_lightning_proto_rawDescGZIP(), []int{110}
}
func (x *NodeInfoRequest) GetPubKey() string {
@@ -10801,7 +11037,7 @@ type NodeInfo struct {
func (x *NodeInfo) Reset() {
*x = NodeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[107]
+ mi := &file_lightning_proto_msgTypes[111]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10814,7 +11050,7 @@ func (x *NodeInfo) String() string {
func (*NodeInfo) ProtoMessage() {}
func (x *NodeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[107]
+ mi := &file_lightning_proto_msgTypes[111]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10827,7 +11063,7 @@ func (x *NodeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeInfo.ProtoReflect.Descriptor instead.
func (*NodeInfo) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{107}
+ return file_lightning_proto_rawDescGZIP(), []int{111}
}
func (x *NodeInfo) GetNode() *LightningNode {
@@ -10880,7 +11116,7 @@ type LightningNode struct {
func (x *LightningNode) Reset() {
*x = LightningNode{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[108]
+ mi := &file_lightning_proto_msgTypes[112]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10893,7 +11129,7 @@ func (x *LightningNode) String() string {
func (*LightningNode) ProtoMessage() {}
func (x *LightningNode) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[108]
+ mi := &file_lightning_proto_msgTypes[112]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10906,7 +11142,7 @@ func (x *LightningNode) ProtoReflect() protoreflect.Message {
// Deprecated: Use LightningNode.ProtoReflect.Descriptor instead.
func (*LightningNode) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{108}
+ return file_lightning_proto_rawDescGZIP(), []int{112}
}
func (x *LightningNode) GetLastUpdate() uint32 {
@@ -10970,7 +11206,7 @@ type NodeAddress struct {
func (x *NodeAddress) Reset() {
*x = NodeAddress{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[109]
+ mi := &file_lightning_proto_msgTypes[113]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10983,7 +11219,7 @@ func (x *NodeAddress) String() string {
func (*NodeAddress) ProtoMessage() {}
func (x *NodeAddress) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[109]
+ mi := &file_lightning_proto_msgTypes[113]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10996,7 +11232,7 @@ func (x *NodeAddress) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeAddress.ProtoReflect.Descriptor instead.
func (*NodeAddress) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{109}
+ return file_lightning_proto_rawDescGZIP(), []int{113}
}
func (x *NodeAddress) GetNetwork() string {
@@ -11035,7 +11271,7 @@ type RoutingPolicy struct {
func (x *RoutingPolicy) Reset() {
*x = RoutingPolicy{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[110]
+ mi := &file_lightning_proto_msgTypes[114]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11048,7 +11284,7 @@ func (x *RoutingPolicy) String() string {
func (*RoutingPolicy) ProtoMessage() {}
func (x *RoutingPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[110]
+ mi := &file_lightning_proto_msgTypes[114]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11061,7 +11297,7 @@ func (x *RoutingPolicy) ProtoReflect() protoreflect.Message {
// Deprecated: Use RoutingPolicy.ProtoReflect.Descriptor instead.
func (*RoutingPolicy) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{110}
+ return file_lightning_proto_rawDescGZIP(), []int{114}
}
func (x *RoutingPolicy) GetTimeLockDelta() uint32 {
@@ -11161,7 +11397,7 @@ type ChannelAuthProof struct {
func (x *ChannelAuthProof) Reset() {
*x = ChannelAuthProof{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[111]
+ mi := &file_lightning_proto_msgTypes[115]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11174,7 +11410,7 @@ func (x *ChannelAuthProof) String() string {
func (*ChannelAuthProof) ProtoMessage() {}
func (x *ChannelAuthProof) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[111]
+ mi := &file_lightning_proto_msgTypes[115]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11187,7 +11423,7 @@ func (x *ChannelAuthProof) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelAuthProof.ProtoReflect.Descriptor instead.
func (*ChannelAuthProof) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{111}
+ return file_lightning_proto_rawDescGZIP(), []int{115}
}
func (x *ChannelAuthProof) GetNodeSig1() []byte {
@@ -11253,7 +11489,7 @@ type ChannelEdge struct {
func (x *ChannelEdge) Reset() {
*x = ChannelEdge{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[112]
+ mi := &file_lightning_proto_msgTypes[116]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11266,7 +11502,7 @@ func (x *ChannelEdge) String() string {
func (*ChannelEdge) ProtoMessage() {}
func (x *ChannelEdge) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[112]
+ mi := &file_lightning_proto_msgTypes[116]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11279,7 +11515,7 @@ func (x *ChannelEdge) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelEdge.ProtoReflect.Descriptor instead.
func (*ChannelEdge) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{112}
+ return file_lightning_proto_rawDescGZIP(), []int{116}
}
func (x *ChannelEdge) GetChannelId() uint64 {
@@ -11369,7 +11605,7 @@ type ChannelGraphRequest struct {
func (x *ChannelGraphRequest) Reset() {
*x = ChannelGraphRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[113]
+ mi := &file_lightning_proto_msgTypes[117]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11382,7 +11618,7 @@ func (x *ChannelGraphRequest) String() string {
func (*ChannelGraphRequest) ProtoMessage() {}
func (x *ChannelGraphRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[113]
+ mi := &file_lightning_proto_msgTypes[117]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11395,7 +11631,7 @@ func (x *ChannelGraphRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelGraphRequest.ProtoReflect.Descriptor instead.
func (*ChannelGraphRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{113}
+ return file_lightning_proto_rawDescGZIP(), []int{117}
}
func (x *ChannelGraphRequest) GetIncludeUnannounced() bool {
@@ -11427,7 +11663,7 @@ type ChannelGraph struct {
func (x *ChannelGraph) Reset() {
*x = ChannelGraph{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[114]
+ mi := &file_lightning_proto_msgTypes[118]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11440,7 +11676,7 @@ func (x *ChannelGraph) String() string {
func (*ChannelGraph) ProtoMessage() {}
func (x *ChannelGraph) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[114]
+ mi := &file_lightning_proto_msgTypes[118]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11453,7 +11689,7 @@ func (x *ChannelGraph) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelGraph.ProtoReflect.Descriptor instead.
func (*ChannelGraph) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{114}
+ return file_lightning_proto_rawDescGZIP(), []int{118}
}
func (x *ChannelGraph) GetNodes() []*LightningNode {
@@ -11482,7 +11718,7 @@ type NodeMetricsRequest struct {
func (x *NodeMetricsRequest) Reset() {
*x = NodeMetricsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[115]
+ mi := &file_lightning_proto_msgTypes[119]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11495,7 +11731,7 @@ func (x *NodeMetricsRequest) String() string {
func (*NodeMetricsRequest) ProtoMessage() {}
func (x *NodeMetricsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[115]
+ mi := &file_lightning_proto_msgTypes[119]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11508,7 +11744,7 @@ func (x *NodeMetricsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeMetricsRequest.ProtoReflect.Descriptor instead.
func (*NodeMetricsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{115}
+ return file_lightning_proto_rawDescGZIP(), []int{119}
}
func (x *NodeMetricsRequest) GetTypes() []NodeMetricType {
@@ -11534,7 +11770,7 @@ type NodeMetricsResponse struct {
func (x *NodeMetricsResponse) Reset() {
*x = NodeMetricsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[116]
+ mi := &file_lightning_proto_msgTypes[120]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11547,7 +11783,7 @@ func (x *NodeMetricsResponse) String() string {
func (*NodeMetricsResponse) ProtoMessage() {}
func (x *NodeMetricsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[116]
+ mi := &file_lightning_proto_msgTypes[120]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11560,7 +11796,7 @@ func (x *NodeMetricsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeMetricsResponse.ProtoReflect.Descriptor instead.
func (*NodeMetricsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{116}
+ return file_lightning_proto_rawDescGZIP(), []int{120}
}
func (x *NodeMetricsResponse) GetBetweennessCentrality() map[string]*FloatMetric {
@@ -11584,7 +11820,7 @@ type FloatMetric struct {
func (x *FloatMetric) Reset() {
*x = FloatMetric{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[117]
+ mi := &file_lightning_proto_msgTypes[121]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11597,7 +11833,7 @@ func (x *FloatMetric) String() string {
func (*FloatMetric) ProtoMessage() {}
func (x *FloatMetric) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[117]
+ mi := &file_lightning_proto_msgTypes[121]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11610,7 +11846,7 @@ func (x *FloatMetric) ProtoReflect() protoreflect.Message {
// Deprecated: Use FloatMetric.ProtoReflect.Descriptor instead.
func (*FloatMetric) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{117}
+ return file_lightning_proto_rawDescGZIP(), []int{121}
}
func (x *FloatMetric) GetValue() float64 {
@@ -11646,7 +11882,7 @@ type ChanInfoRequest struct {
func (x *ChanInfoRequest) Reset() {
*x = ChanInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[118]
+ mi := &file_lightning_proto_msgTypes[122]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11659,7 +11895,7 @@ func (x *ChanInfoRequest) String() string {
func (*ChanInfoRequest) ProtoMessage() {}
func (x *ChanInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[118]
+ mi := &file_lightning_proto_msgTypes[122]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11672,7 +11908,7 @@ func (x *ChanInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChanInfoRequest.ProtoReflect.Descriptor instead.
func (*ChanInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{118}
+ return file_lightning_proto_rawDescGZIP(), []int{122}
}
func (x *ChanInfoRequest) GetChanId() uint64 {
@@ -11705,7 +11941,7 @@ type NetworkInfoRequest struct {
func (x *NetworkInfoRequest) Reset() {
*x = NetworkInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[119]
+ mi := &file_lightning_proto_msgTypes[123]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11718,7 +11954,7 @@ func (x *NetworkInfoRequest) String() string {
func (*NetworkInfoRequest) ProtoMessage() {}
func (x *NetworkInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[119]
+ mi := &file_lightning_proto_msgTypes[123]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11731,7 +11967,7 @@ func (x *NetworkInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use NetworkInfoRequest.ProtoReflect.Descriptor instead.
func (*NetworkInfoRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{119}
+ return file_lightning_proto_rawDescGZIP(), []int{123}
}
type NetworkInfo struct {
@@ -11756,7 +11992,7 @@ type NetworkInfo struct {
func (x *NetworkInfo) Reset() {
*x = NetworkInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[120]
+ mi := &file_lightning_proto_msgTypes[124]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11769,7 +12005,7 @@ func (x *NetworkInfo) String() string {
func (*NetworkInfo) ProtoMessage() {}
func (x *NetworkInfo) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[120]
+ mi := &file_lightning_proto_msgTypes[124]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11782,7 +12018,7 @@ func (x *NetworkInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use NetworkInfo.ProtoReflect.Descriptor instead.
func (*NetworkInfo) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{120}
+ return file_lightning_proto_rawDescGZIP(), []int{124}
}
func (x *NetworkInfo) GetGraphDiameter() uint32 {
@@ -11871,7 +12107,7 @@ type StopRequest struct {
func (x *StopRequest) Reset() {
*x = StopRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[121]
+ mi := &file_lightning_proto_msgTypes[125]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11884,7 +12120,7 @@ func (x *StopRequest) String() string {
func (*StopRequest) ProtoMessage() {}
func (x *StopRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[121]
+ mi := &file_lightning_proto_msgTypes[125]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11897,7 +12133,7 @@ func (x *StopRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopRequest.ProtoReflect.Descriptor instead.
func (*StopRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{121}
+ return file_lightning_proto_rawDescGZIP(), []int{125}
}
type StopResponse struct {
@@ -11912,7 +12148,7 @@ type StopResponse struct {
func (x *StopResponse) Reset() {
*x = StopResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[122]
+ mi := &file_lightning_proto_msgTypes[126]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11925,7 +12161,7 @@ func (x *StopResponse) String() string {
func (*StopResponse) ProtoMessage() {}
func (x *StopResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[122]
+ mi := &file_lightning_proto_msgTypes[126]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11938,7 +12174,7 @@ func (x *StopResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopResponse.ProtoReflect.Descriptor instead.
func (*StopResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{122}
+ return file_lightning_proto_rawDescGZIP(), []int{126}
}
func (x *StopResponse) GetStatus() string {
@@ -11957,7 +12193,7 @@ type GraphTopologySubscription struct {
func (x *GraphTopologySubscription) Reset() {
*x = GraphTopologySubscription{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[123]
+ mi := &file_lightning_proto_msgTypes[127]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11970,7 +12206,7 @@ func (x *GraphTopologySubscription) String() string {
func (*GraphTopologySubscription) ProtoMessage() {}
func (x *GraphTopologySubscription) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[123]
+ mi := &file_lightning_proto_msgTypes[127]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11983,7 +12219,7 @@ func (x *GraphTopologySubscription) ProtoReflect() protoreflect.Message {
// Deprecated: Use GraphTopologySubscription.ProtoReflect.Descriptor instead.
func (*GraphTopologySubscription) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{123}
+ return file_lightning_proto_rawDescGZIP(), []int{127}
}
type GraphTopologyUpdate struct {
@@ -11999,7 +12235,7 @@ type GraphTopologyUpdate struct {
func (x *GraphTopologyUpdate) Reset() {
*x = GraphTopologyUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[124]
+ mi := &file_lightning_proto_msgTypes[128]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12012,7 +12248,7 @@ func (x *GraphTopologyUpdate) String() string {
func (*GraphTopologyUpdate) ProtoMessage() {}
func (x *GraphTopologyUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[124]
+ mi := &file_lightning_proto_msgTypes[128]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12025,7 +12261,7 @@ func (x *GraphTopologyUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use GraphTopologyUpdate.ProtoReflect.Descriptor instead.
func (*GraphTopologyUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{124}
+ return file_lightning_proto_rawDescGZIP(), []int{128}
}
func (x *GraphTopologyUpdate) GetNodeUpdates() []*NodeUpdate {
@@ -12074,7 +12310,7 @@ type NodeUpdate struct {
func (x *NodeUpdate) Reset() {
*x = NodeUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[125]
+ mi := &file_lightning_proto_msgTypes[129]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12087,7 +12323,7 @@ func (x *NodeUpdate) String() string {
func (*NodeUpdate) ProtoMessage() {}
func (x *NodeUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[125]
+ mi := &file_lightning_proto_msgTypes[129]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12100,7 +12336,7 @@ func (x *NodeUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use NodeUpdate.ProtoReflect.Descriptor instead.
func (*NodeUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{125}
+ return file_lightning_proto_rawDescGZIP(), []int{129}
}
// Deprecated: Marked as deprecated in lightning.proto.
@@ -12173,7 +12409,7 @@ type ChannelEdgeUpdate struct {
func (x *ChannelEdgeUpdate) Reset() {
*x = ChannelEdgeUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[126]
+ mi := &file_lightning_proto_msgTypes[130]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12186,7 +12422,7 @@ func (x *ChannelEdgeUpdate) String() string {
func (*ChannelEdgeUpdate) ProtoMessage() {}
func (x *ChannelEdgeUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[126]
+ mi := &file_lightning_proto_msgTypes[130]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12199,7 +12435,7 @@ func (x *ChannelEdgeUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelEdgeUpdate.ProtoReflect.Descriptor instead.
func (*ChannelEdgeUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{126}
+ return file_lightning_proto_rawDescGZIP(), []int{130}
}
func (x *ChannelEdgeUpdate) GetChanId() uint64 {
@@ -12261,7 +12497,7 @@ type ClosedChannelUpdate struct {
func (x *ClosedChannelUpdate) Reset() {
*x = ClosedChannelUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[127]
+ mi := &file_lightning_proto_msgTypes[131]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12274,7 +12510,7 @@ func (x *ClosedChannelUpdate) String() string {
func (*ClosedChannelUpdate) ProtoMessage() {}
func (x *ClosedChannelUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[127]
+ mi := &file_lightning_proto_msgTypes[131]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12287,7 +12523,7 @@ func (x *ClosedChannelUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ClosedChannelUpdate.ProtoReflect.Descriptor instead.
func (*ClosedChannelUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{127}
+ return file_lightning_proto_rawDescGZIP(), []int{131}
}
func (x *ClosedChannelUpdate) GetChanId() uint64 {
@@ -12339,7 +12575,7 @@ type HopHint struct {
func (x *HopHint) Reset() {
*x = HopHint{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[128]
+ mi := &file_lightning_proto_msgTypes[132]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12352,7 +12588,7 @@ func (x *HopHint) String() string {
func (*HopHint) ProtoMessage() {}
func (x *HopHint) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[128]
+ mi := &file_lightning_proto_msgTypes[132]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12365,7 +12601,7 @@ func (x *HopHint) ProtoReflect() protoreflect.Message {
// Deprecated: Use HopHint.ProtoReflect.Descriptor instead.
func (*HopHint) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{128}
+ return file_lightning_proto_rawDescGZIP(), []int{132}
}
func (x *HopHint) GetNodeId() string {
@@ -12414,7 +12650,7 @@ type SetID struct {
func (x *SetID) Reset() {
*x = SetID{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[129]
+ mi := &file_lightning_proto_msgTypes[133]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12427,7 +12663,7 @@ func (x *SetID) String() string {
func (*SetID) ProtoMessage() {}
func (x *SetID) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[129]
+ mi := &file_lightning_proto_msgTypes[133]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12440,7 +12676,7 @@ func (x *SetID) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetID.ProtoReflect.Descriptor instead.
func (*SetID) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{129}
+ return file_lightning_proto_rawDescGZIP(), []int{133}
}
func (x *SetID) GetSetId() []byte {
@@ -12463,7 +12699,7 @@ type RouteHint struct {
func (x *RouteHint) Reset() {
*x = RouteHint{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[130]
+ mi := &file_lightning_proto_msgTypes[134]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12476,7 +12712,7 @@ func (x *RouteHint) String() string {
func (*RouteHint) ProtoMessage() {}
func (x *RouteHint) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[130]
+ mi := &file_lightning_proto_msgTypes[134]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12489,7 +12725,7 @@ func (x *RouteHint) ProtoReflect() protoreflect.Message {
// Deprecated: Use RouteHint.ProtoReflect.Descriptor instead.
func (*RouteHint) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{130}
+ return file_lightning_proto_rawDescGZIP(), []int{134}
}
func (x *RouteHint) GetHopHints() []*HopHint {
@@ -12527,7 +12763,7 @@ type BlindedPaymentPath struct {
func (x *BlindedPaymentPath) Reset() {
*x = BlindedPaymentPath{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[131]
+ mi := &file_lightning_proto_msgTypes[135]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12540,7 +12776,7 @@ func (x *BlindedPaymentPath) String() string {
func (*BlindedPaymentPath) ProtoMessage() {}
func (x *BlindedPaymentPath) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[131]
+ mi := &file_lightning_proto_msgTypes[135]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12553,7 +12789,7 @@ func (x *BlindedPaymentPath) ProtoReflect() protoreflect.Message {
// Deprecated: Use BlindedPaymentPath.ProtoReflect.Descriptor instead.
func (*BlindedPaymentPath) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{131}
+ return file_lightning_proto_rawDescGZIP(), []int{135}
}
func (x *BlindedPaymentPath) GetBlindedPath() *BlindedPath {
@@ -12623,7 +12859,7 @@ type BlindedPath struct {
func (x *BlindedPath) Reset() {
*x = BlindedPath{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[132]
+ mi := &file_lightning_proto_msgTypes[136]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12636,7 +12872,7 @@ func (x *BlindedPath) String() string {
func (*BlindedPath) ProtoMessage() {}
func (x *BlindedPath) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[132]
+ mi := &file_lightning_proto_msgTypes[136]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12649,7 +12885,7 @@ func (x *BlindedPath) ProtoReflect() protoreflect.Message {
// Deprecated: Use BlindedPath.ProtoReflect.Descriptor instead.
func (*BlindedPath) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{132}
+ return file_lightning_proto_rawDescGZIP(), []int{136}
}
func (x *BlindedPath) GetIntroductionNode() []byte {
@@ -12687,7 +12923,7 @@ type BlindedHop struct {
func (x *BlindedHop) Reset() {
*x = BlindedHop{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[133]
+ mi := &file_lightning_proto_msgTypes[137]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12700,7 +12936,7 @@ func (x *BlindedHop) String() string {
func (*BlindedHop) ProtoMessage() {}
func (x *BlindedHop) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[133]
+ mi := &file_lightning_proto_msgTypes[137]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12713,7 +12949,7 @@ func (x *BlindedHop) ProtoReflect() protoreflect.Message {
// Deprecated: Use BlindedHop.ProtoReflect.Descriptor instead.
func (*BlindedHop) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{133}
+ return file_lightning_proto_rawDescGZIP(), []int{137}
}
func (x *BlindedHop) GetBlindedNode() []byte {
@@ -12748,7 +12984,7 @@ type AMPInvoiceState struct {
func (x *AMPInvoiceState) Reset() {
*x = AMPInvoiceState{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[134]
+ mi := &file_lightning_proto_msgTypes[138]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12761,7 +12997,7 @@ func (x *AMPInvoiceState) String() string {
func (*AMPInvoiceState) ProtoMessage() {}
func (x *AMPInvoiceState) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[134]
+ mi := &file_lightning_proto_msgTypes[138]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12774,7 +13010,7 @@ func (x *AMPInvoiceState) ProtoReflect() protoreflect.Message {
// Deprecated: Use AMPInvoiceState.ProtoReflect.Descriptor instead.
func (*AMPInvoiceState) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{134}
+ return file_lightning_proto_rawDescGZIP(), []int{138}
}
func (x *AMPInvoiceState) GetState() InvoiceHTLCState {
@@ -12941,7 +13177,7 @@ type Invoice struct {
func (x *Invoice) Reset() {
*x = Invoice{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[135]
+ mi := &file_lightning_proto_msgTypes[139]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12954,7 +13190,7 @@ func (x *Invoice) String() string {
func (*Invoice) ProtoMessage() {}
func (x *Invoice) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[135]
+ mi := &file_lightning_proto_msgTypes[139]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12967,7 +13203,7 @@ func (x *Invoice) ProtoReflect() protoreflect.Message {
// Deprecated: Use Invoice.ProtoReflect.Descriptor instead.
func (*Invoice) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{135}
+ return file_lightning_proto_rawDescGZIP(), []int{139}
}
func (x *Invoice) GetMemo() string {
@@ -13203,7 +13439,7 @@ type BlindedPathConfig struct {
func (x *BlindedPathConfig) Reset() {
*x = BlindedPathConfig{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[136]
+ mi := &file_lightning_proto_msgTypes[140]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13216,7 +13452,7 @@ func (x *BlindedPathConfig) String() string {
func (*BlindedPathConfig) ProtoMessage() {}
func (x *BlindedPathConfig) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[136]
+ mi := &file_lightning_proto_msgTypes[140]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13229,7 +13465,7 @@ func (x *BlindedPathConfig) ProtoReflect() protoreflect.Message {
// Deprecated: Use BlindedPathConfig.ProtoReflect.Descriptor instead.
func (*BlindedPathConfig) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{136}
+ return file_lightning_proto_rawDescGZIP(), []int{140}
}
func (x *BlindedPathConfig) GetMinNumRealHops() uint32 {
@@ -13302,7 +13538,7 @@ type InvoiceHTLC struct {
func (x *InvoiceHTLC) Reset() {
*x = InvoiceHTLC{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[137]
+ mi := &file_lightning_proto_msgTypes[141]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13315,7 +13551,7 @@ func (x *InvoiceHTLC) String() string {
func (*InvoiceHTLC) ProtoMessage() {}
func (x *InvoiceHTLC) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[137]
+ mi := &file_lightning_proto_msgTypes[141]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13328,7 +13564,7 @@ func (x *InvoiceHTLC) ProtoReflect() protoreflect.Message {
// Deprecated: Use InvoiceHTLC.ProtoReflect.Descriptor instead.
func (*InvoiceHTLC) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{137}
+ return file_lightning_proto_rawDescGZIP(), []int{141}
}
func (x *InvoiceHTLC) GetChanId() uint64 {
@@ -13440,7 +13676,7 @@ type AMP struct {
func (x *AMP) Reset() {
*x = AMP{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[138]
+ mi := &file_lightning_proto_msgTypes[142]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13453,7 +13689,7 @@ func (x *AMP) String() string {
func (*AMP) ProtoMessage() {}
func (x *AMP) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[138]
+ mi := &file_lightning_proto_msgTypes[142]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13466,7 +13702,7 @@ func (x *AMP) ProtoReflect() protoreflect.Message {
// Deprecated: Use AMP.ProtoReflect.Descriptor instead.
func (*AMP) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{138}
+ return file_lightning_proto_rawDescGZIP(), []int{142}
}
func (x *AMP) GetRootShare() []byte {
@@ -13528,7 +13764,7 @@ type AddInvoiceResponse struct {
func (x *AddInvoiceResponse) Reset() {
*x = AddInvoiceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[139]
+ mi := &file_lightning_proto_msgTypes[143]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13541,7 +13777,7 @@ func (x *AddInvoiceResponse) String() string {
func (*AddInvoiceResponse) ProtoMessage() {}
func (x *AddInvoiceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[139]
+ mi := &file_lightning_proto_msgTypes[143]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13554,7 +13790,7 @@ func (x *AddInvoiceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use AddInvoiceResponse.ProtoReflect.Descriptor instead.
func (*AddInvoiceResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{139}
+ return file_lightning_proto_rawDescGZIP(), []int{143}
}
func (x *AddInvoiceResponse) GetRHash() []byte {
@@ -13605,7 +13841,7 @@ type PaymentHash struct {
func (x *PaymentHash) Reset() {
*x = PaymentHash{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[140]
+ mi := &file_lightning_proto_msgTypes[144]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13618,7 +13854,7 @@ func (x *PaymentHash) String() string {
func (*PaymentHash) ProtoMessage() {}
func (x *PaymentHash) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[140]
+ mi := &file_lightning_proto_msgTypes[144]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13631,7 +13867,7 @@ func (x *PaymentHash) ProtoReflect() protoreflect.Message {
// Deprecated: Use PaymentHash.ProtoReflect.Descriptor instead.
func (*PaymentHash) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{140}
+ return file_lightning_proto_rawDescGZIP(), []int{144}
}
// Deprecated: Marked as deprecated in lightning.proto.
@@ -13676,7 +13912,7 @@ type ListInvoiceRequest struct {
func (x *ListInvoiceRequest) Reset() {
*x = ListInvoiceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[141]
+ mi := &file_lightning_proto_msgTypes[145]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13689,7 +13925,7 @@ func (x *ListInvoiceRequest) String() string {
func (*ListInvoiceRequest) ProtoMessage() {}
func (x *ListInvoiceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[141]
+ mi := &file_lightning_proto_msgTypes[145]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13702,7 +13938,7 @@ func (x *ListInvoiceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListInvoiceRequest.ProtoReflect.Descriptor instead.
func (*ListInvoiceRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{141}
+ return file_lightning_proto_rawDescGZIP(), []int{145}
}
func (x *ListInvoiceRequest) GetPendingOnly() bool {
@@ -13766,7 +14002,7 @@ type ListInvoiceResponse struct {
func (x *ListInvoiceResponse) Reset() {
*x = ListInvoiceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[142]
+ mi := &file_lightning_proto_msgTypes[146]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13779,7 +14015,7 @@ func (x *ListInvoiceResponse) String() string {
func (*ListInvoiceResponse) ProtoMessage() {}
func (x *ListInvoiceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[142]
+ mi := &file_lightning_proto_msgTypes[146]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13792,7 +14028,7 @@ func (x *ListInvoiceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListInvoiceResponse.ProtoReflect.Descriptor instead.
func (*ListInvoiceResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{142}
+ return file_lightning_proto_rawDescGZIP(), []int{146}
}
func (x *ListInvoiceResponse) GetInvoices() []*Invoice {
@@ -13836,7 +14072,7 @@ type InvoiceSubscription struct {
func (x *InvoiceSubscription) Reset() {
*x = InvoiceSubscription{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[143]
+ mi := &file_lightning_proto_msgTypes[147]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13849,7 +14085,7 @@ func (x *InvoiceSubscription) String() string {
func (*InvoiceSubscription) ProtoMessage() {}
func (x *InvoiceSubscription) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[143]
+ mi := &file_lightning_proto_msgTypes[147]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13862,7 +14098,7 @@ func (x *InvoiceSubscription) ProtoReflect() protoreflect.Message {
// Deprecated: Use InvoiceSubscription.ProtoReflect.Descriptor instead.
func (*InvoiceSubscription) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{143}
+ return file_lightning_proto_rawDescGZIP(), []int{147}
}
func (x *InvoiceSubscription) GetAddIndex() uint64 {
@@ -13891,7 +14127,7 @@ type DelCanceledInvoiceReq struct {
func (x *DelCanceledInvoiceReq) Reset() {
*x = DelCanceledInvoiceReq{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[144]
+ mi := &file_lightning_proto_msgTypes[148]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13904,7 +14140,7 @@ func (x *DelCanceledInvoiceReq) String() string {
func (*DelCanceledInvoiceReq) ProtoMessage() {}
func (x *DelCanceledInvoiceReq) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[144]
+ mi := &file_lightning_proto_msgTypes[148]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13917,7 +14153,7 @@ func (x *DelCanceledInvoiceReq) ProtoReflect() protoreflect.Message {
// Deprecated: Use DelCanceledInvoiceReq.ProtoReflect.Descriptor instead.
func (*DelCanceledInvoiceReq) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{144}
+ return file_lightning_proto_rawDescGZIP(), []int{148}
}
func (x *DelCanceledInvoiceReq) GetInvoiceHash() string {
@@ -13939,7 +14175,7 @@ type DelCanceledInvoiceResp struct {
func (x *DelCanceledInvoiceResp) Reset() {
*x = DelCanceledInvoiceResp{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[145]
+ mi := &file_lightning_proto_msgTypes[149]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13952,7 +14188,7 @@ func (x *DelCanceledInvoiceResp) String() string {
func (*DelCanceledInvoiceResp) ProtoMessage() {}
func (x *DelCanceledInvoiceResp) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[145]
+ mi := &file_lightning_proto_msgTypes[149]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13965,7 +14201,7 @@ func (x *DelCanceledInvoiceResp) ProtoReflect() protoreflect.Message {
// Deprecated: Use DelCanceledInvoiceResp.ProtoReflect.Descriptor instead.
func (*DelCanceledInvoiceResp) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{145}
+ return file_lightning_proto_rawDescGZIP(), []int{149}
}
func (x *DelCanceledInvoiceResp) GetStatus() string {
@@ -14025,7 +14261,7 @@ type Payment struct {
func (x *Payment) Reset() {
*x = Payment{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[146]
+ mi := &file_lightning_proto_msgTypes[150]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14038,7 +14274,7 @@ func (x *Payment) String() string {
func (*Payment) ProtoMessage() {}
func (x *Payment) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[146]
+ mi := &file_lightning_proto_msgTypes[150]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14051,7 +14287,7 @@ func (x *Payment) ProtoReflect() protoreflect.Message {
// Deprecated: Use Payment.ProtoReflect.Descriptor instead.
func (*Payment) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{146}
+ return file_lightning_proto_rawDescGZIP(), []int{150}
}
func (x *Payment) GetPaymentHash() string {
@@ -14194,7 +14430,7 @@ type HTLCAttempt struct {
func (x *HTLCAttempt) Reset() {
*x = HTLCAttempt{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[147]
+ mi := &file_lightning_proto_msgTypes[151]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14207,7 +14443,7 @@ func (x *HTLCAttempt) String() string {
func (*HTLCAttempt) ProtoMessage() {}
func (x *HTLCAttempt) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[147]
+ mi := &file_lightning_proto_msgTypes[151]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14220,7 +14456,7 @@ func (x *HTLCAttempt) ProtoReflect() protoreflect.Message {
// Deprecated: Use HTLCAttempt.ProtoReflect.Descriptor instead.
func (*HTLCAttempt) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{147}
+ return file_lightning_proto_rawDescGZIP(), []int{151}
}
func (x *HTLCAttempt) GetAttemptId() uint64 {
@@ -14310,7 +14546,7 @@ type ListPaymentsRequest struct {
func (x *ListPaymentsRequest) Reset() {
*x = ListPaymentsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[148]
+ mi := &file_lightning_proto_msgTypes[152]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14323,7 +14559,7 @@ func (x *ListPaymentsRequest) String() string {
func (*ListPaymentsRequest) ProtoMessage() {}
func (x *ListPaymentsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[148]
+ mi := &file_lightning_proto_msgTypes[152]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14336,7 +14572,7 @@ func (x *ListPaymentsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPaymentsRequest.ProtoReflect.Descriptor instead.
func (*ListPaymentsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{148}
+ return file_lightning_proto_rawDescGZIP(), []int{152}
}
func (x *ListPaymentsRequest) GetIncludeIncomplete() bool {
@@ -14411,7 +14647,7 @@ type ListPaymentsResponse struct {
func (x *ListPaymentsResponse) Reset() {
*x = ListPaymentsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[149]
+ mi := &file_lightning_proto_msgTypes[153]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14424,7 +14660,7 @@ func (x *ListPaymentsResponse) String() string {
func (*ListPaymentsResponse) ProtoMessage() {}
func (x *ListPaymentsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[149]
+ mi := &file_lightning_proto_msgTypes[153]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14437,7 +14673,7 @@ func (x *ListPaymentsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPaymentsResponse.ProtoReflect.Descriptor instead.
func (*ListPaymentsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{149}
+ return file_lightning_proto_rawDescGZIP(), []int{153}
}
func (x *ListPaymentsResponse) GetPayments() []*Payment {
@@ -14482,7 +14718,7 @@ type DeletePaymentRequest struct {
func (x *DeletePaymentRequest) Reset() {
*x = DeletePaymentRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[150]
+ mi := &file_lightning_proto_msgTypes[154]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14495,7 +14731,7 @@ func (x *DeletePaymentRequest) String() string {
func (*DeletePaymentRequest) ProtoMessage() {}
func (x *DeletePaymentRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[150]
+ mi := &file_lightning_proto_msgTypes[154]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14508,7 +14744,7 @@ func (x *DeletePaymentRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeletePaymentRequest.ProtoReflect.Descriptor instead.
func (*DeletePaymentRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{150}
+ return file_lightning_proto_rawDescGZIP(), []int{154}
}
func (x *DeletePaymentRequest) GetPaymentHash() []byte {
@@ -14542,7 +14778,7 @@ type DeleteAllPaymentsRequest struct {
func (x *DeleteAllPaymentsRequest) Reset() {
*x = DeleteAllPaymentsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[151]
+ mi := &file_lightning_proto_msgTypes[155]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14555,7 +14791,7 @@ func (x *DeleteAllPaymentsRequest) String() string {
func (*DeleteAllPaymentsRequest) ProtoMessage() {}
func (x *DeleteAllPaymentsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[151]
+ mi := &file_lightning_proto_msgTypes[155]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14568,7 +14804,7 @@ func (x *DeleteAllPaymentsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeleteAllPaymentsRequest.ProtoReflect.Descriptor instead.
func (*DeleteAllPaymentsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{151}
+ return file_lightning_proto_rawDescGZIP(), []int{155}
}
func (x *DeleteAllPaymentsRequest) GetFailedPaymentsOnly() bool {
@@ -14604,7 +14840,7 @@ type DeletePaymentResponse struct {
func (x *DeletePaymentResponse) Reset() {
*x = DeletePaymentResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[152]
+ mi := &file_lightning_proto_msgTypes[156]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14617,7 +14853,7 @@ func (x *DeletePaymentResponse) String() string {
func (*DeletePaymentResponse) ProtoMessage() {}
func (x *DeletePaymentResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[152]
+ mi := &file_lightning_proto_msgTypes[156]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14630,7 +14866,7 @@ func (x *DeletePaymentResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeletePaymentResponse.ProtoReflect.Descriptor instead.
func (*DeletePaymentResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{152}
+ return file_lightning_proto_rawDescGZIP(), []int{156}
}
func (x *DeletePaymentResponse) GetStatus() string {
@@ -14652,7 +14888,7 @@ type DeleteAllPaymentsResponse struct {
func (x *DeleteAllPaymentsResponse) Reset() {
*x = DeleteAllPaymentsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[153]
+ mi := &file_lightning_proto_msgTypes[157]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14665,7 +14901,7 @@ func (x *DeleteAllPaymentsResponse) String() string {
func (*DeleteAllPaymentsResponse) ProtoMessage() {}
func (x *DeleteAllPaymentsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[153]
+ mi := &file_lightning_proto_msgTypes[157]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14678,7 +14914,7 @@ func (x *DeleteAllPaymentsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeleteAllPaymentsResponse.ProtoReflect.Descriptor instead.
func (*DeleteAllPaymentsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{153}
+ return file_lightning_proto_rawDescGZIP(), []int{157}
}
func (x *DeleteAllPaymentsResponse) GetStatus() string {
@@ -14704,7 +14940,7 @@ type AbandonChannelRequest struct {
func (x *AbandonChannelRequest) Reset() {
*x = AbandonChannelRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[154]
+ mi := &file_lightning_proto_msgTypes[158]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14717,7 +14953,7 @@ func (x *AbandonChannelRequest) String() string {
func (*AbandonChannelRequest) ProtoMessage() {}
func (x *AbandonChannelRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[154]
+ mi := &file_lightning_proto_msgTypes[158]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14730,7 +14966,7 @@ func (x *AbandonChannelRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use AbandonChannelRequest.ProtoReflect.Descriptor instead.
func (*AbandonChannelRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{154}
+ return file_lightning_proto_rawDescGZIP(), []int{158}
}
func (x *AbandonChannelRequest) GetChannelPoint() *ChannelPoint {
@@ -14766,7 +15002,7 @@ type AbandonChannelResponse struct {
func (x *AbandonChannelResponse) Reset() {
*x = AbandonChannelResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[155]
+ mi := &file_lightning_proto_msgTypes[159]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14779,7 +15015,7 @@ func (x *AbandonChannelResponse) String() string {
func (*AbandonChannelResponse) ProtoMessage() {}
func (x *AbandonChannelResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[155]
+ mi := &file_lightning_proto_msgTypes[159]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14792,7 +15028,7 @@ func (x *AbandonChannelResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use AbandonChannelResponse.ProtoReflect.Descriptor instead.
func (*AbandonChannelResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{155}
+ return file_lightning_proto_rawDescGZIP(), []int{159}
}
func (x *AbandonChannelResponse) GetStatus() string {
@@ -14814,7 +15050,7 @@ type DebugLevelRequest struct {
func (x *DebugLevelRequest) Reset() {
*x = DebugLevelRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[156]
+ mi := &file_lightning_proto_msgTypes[160]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14827,7 +15063,7 @@ func (x *DebugLevelRequest) String() string {
func (*DebugLevelRequest) ProtoMessage() {}
func (x *DebugLevelRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[156]
+ mi := &file_lightning_proto_msgTypes[160]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14840,7 +15076,7 @@ func (x *DebugLevelRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DebugLevelRequest.ProtoReflect.Descriptor instead.
func (*DebugLevelRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{156}
+ return file_lightning_proto_rawDescGZIP(), []int{160}
}
func (x *DebugLevelRequest) GetShow() bool {
@@ -14868,7 +15104,7 @@ type DebugLevelResponse struct {
func (x *DebugLevelResponse) Reset() {
*x = DebugLevelResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[157]
+ mi := &file_lightning_proto_msgTypes[161]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14881,7 +15117,7 @@ func (x *DebugLevelResponse) String() string {
func (*DebugLevelResponse) ProtoMessage() {}
func (x *DebugLevelResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[157]
+ mi := &file_lightning_proto_msgTypes[161]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14894,7 +15130,7 @@ func (x *DebugLevelResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DebugLevelResponse.ProtoReflect.Descriptor instead.
func (*DebugLevelResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{157}
+ return file_lightning_proto_rawDescGZIP(), []int{161}
}
func (x *DebugLevelResponse) GetSubSystems() string {
@@ -14916,7 +15152,7 @@ type PayReqString struct {
func (x *PayReqString) Reset() {
*x = PayReqString{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[158]
+ mi := &file_lightning_proto_msgTypes[162]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14929,7 +15165,7 @@ func (x *PayReqString) String() string {
func (*PayReqString) ProtoMessage() {}
func (x *PayReqString) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[158]
+ mi := &file_lightning_proto_msgTypes[162]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14942,7 +15178,7 @@ func (x *PayReqString) ProtoReflect() protoreflect.Message {
// Deprecated: Use PayReqString.ProtoReflect.Descriptor instead.
func (*PayReqString) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{158}
+ return file_lightning_proto_rawDescGZIP(), []int{162}
}
func (x *PayReqString) GetPayReq() string {
@@ -14976,7 +15212,7 @@ type PayReq struct {
func (x *PayReq) Reset() {
*x = PayReq{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[159]
+ mi := &file_lightning_proto_msgTypes[163]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14989,7 +15225,7 @@ func (x *PayReq) String() string {
func (*PayReq) ProtoMessage() {}
func (x *PayReq) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[159]
+ mi := &file_lightning_proto_msgTypes[163]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15002,7 +15238,7 @@ func (x *PayReq) ProtoReflect() protoreflect.Message {
// Deprecated: Use PayReq.ProtoReflect.Descriptor instead.
func (*PayReq) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{159}
+ return file_lightning_proto_rawDescGZIP(), []int{163}
}
func (x *PayReq) GetDestination() string {
@@ -15116,7 +15352,7 @@ type Feature struct {
func (x *Feature) Reset() {
*x = Feature{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[160]
+ mi := &file_lightning_proto_msgTypes[164]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15129,7 +15365,7 @@ func (x *Feature) String() string {
func (*Feature) ProtoMessage() {}
func (x *Feature) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[160]
+ mi := &file_lightning_proto_msgTypes[164]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15142,7 +15378,7 @@ func (x *Feature) ProtoReflect() protoreflect.Message {
// Deprecated: Use Feature.ProtoReflect.Descriptor instead.
func (*Feature) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{160}
+ return file_lightning_proto_rawDescGZIP(), []int{164}
}
func (x *Feature) GetName() string {
@@ -15175,7 +15411,7 @@ type FeeReportRequest struct {
func (x *FeeReportRequest) Reset() {
*x = FeeReportRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[161]
+ mi := &file_lightning_proto_msgTypes[165]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15188,7 +15424,7 @@ func (x *FeeReportRequest) String() string {
func (*FeeReportRequest) ProtoMessage() {}
func (x *FeeReportRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[161]
+ mi := &file_lightning_proto_msgTypes[165]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15201,7 +15437,7 @@ func (x *FeeReportRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeeReportRequest.ProtoReflect.Descriptor instead.
func (*FeeReportRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{161}
+ return file_lightning_proto_rawDescGZIP(), []int{165}
}
type ChannelFeeReport struct {
@@ -15231,7 +15467,7 @@ type ChannelFeeReport struct {
func (x *ChannelFeeReport) Reset() {
*x = ChannelFeeReport{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[162]
+ mi := &file_lightning_proto_msgTypes[166]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15244,7 +15480,7 @@ func (x *ChannelFeeReport) String() string {
func (*ChannelFeeReport) ProtoMessage() {}
func (x *ChannelFeeReport) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[162]
+ mi := &file_lightning_proto_msgTypes[166]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15257,7 +15493,7 @@ func (x *ChannelFeeReport) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelFeeReport.ProtoReflect.Descriptor instead.
func (*ChannelFeeReport) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{162}
+ return file_lightning_proto_rawDescGZIP(), []int{166}
}
func (x *ChannelFeeReport) GetChanId() uint64 {
@@ -15331,7 +15567,7 @@ type FeeReportResponse struct {
func (x *FeeReportResponse) Reset() {
*x = FeeReportResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[163]
+ mi := &file_lightning_proto_msgTypes[167]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15344,7 +15580,7 @@ func (x *FeeReportResponse) String() string {
func (*FeeReportResponse) ProtoMessage() {}
func (x *FeeReportResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[163]
+ mi := &file_lightning_proto_msgTypes[167]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15357,7 +15593,7 @@ func (x *FeeReportResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeeReportResponse.ProtoReflect.Descriptor instead.
func (*FeeReportResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{163}
+ return file_lightning_proto_rawDescGZIP(), []int{167}
}
func (x *FeeReportResponse) GetChannelFees() []*ChannelFeeReport {
@@ -15404,7 +15640,7 @@ type InboundFee struct {
func (x *InboundFee) Reset() {
*x = InboundFee{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[164]
+ mi := &file_lightning_proto_msgTypes[168]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15417,7 +15653,7 @@ func (x *InboundFee) String() string {
func (*InboundFee) ProtoMessage() {}
func (x *InboundFee) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[164]
+ mi := &file_lightning_proto_msgTypes[168]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15430,7 +15666,7 @@ func (x *InboundFee) ProtoReflect() protoreflect.Message {
// Deprecated: Use InboundFee.ProtoReflect.Descriptor instead.
func (*InboundFee) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{164}
+ return file_lightning_proto_rawDescGZIP(), []int{168}
}
func (x *InboundFee) GetBaseFeeMsat() int32 {
@@ -15490,7 +15726,7 @@ type PolicyUpdateRequest struct {
func (x *PolicyUpdateRequest) Reset() {
*x = PolicyUpdateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[165]
+ mi := &file_lightning_proto_msgTypes[169]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15503,7 +15739,7 @@ func (x *PolicyUpdateRequest) String() string {
func (*PolicyUpdateRequest) ProtoMessage() {}
func (x *PolicyUpdateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[165]
+ mi := &file_lightning_proto_msgTypes[169]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15516,7 +15752,7 @@ func (x *PolicyUpdateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyUpdateRequest.ProtoReflect.Descriptor instead.
func (*PolicyUpdateRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{165}
+ return file_lightning_proto_rawDescGZIP(), []int{169}
}
func (m *PolicyUpdateRequest) GetScope() isPolicyUpdateRequest_Scope {
@@ -15637,7 +15873,7 @@ type FailedUpdate struct {
func (x *FailedUpdate) Reset() {
*x = FailedUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[166]
+ mi := &file_lightning_proto_msgTypes[170]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15650,7 +15886,7 @@ func (x *FailedUpdate) String() string {
func (*FailedUpdate) ProtoMessage() {}
func (x *FailedUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[166]
+ mi := &file_lightning_proto_msgTypes[170]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15663,7 +15899,7 @@ func (x *FailedUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use FailedUpdate.ProtoReflect.Descriptor instead.
func (*FailedUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{166}
+ return file_lightning_proto_rawDescGZIP(), []int{170}
}
func (x *FailedUpdate) GetOutpoint() *OutPoint {
@@ -15699,7 +15935,7 @@ type PolicyUpdateResponse struct {
func (x *PolicyUpdateResponse) Reset() {
*x = PolicyUpdateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[167]
+ mi := &file_lightning_proto_msgTypes[171]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15712,7 +15948,7 @@ func (x *PolicyUpdateResponse) String() string {
func (*PolicyUpdateResponse) ProtoMessage() {}
func (x *PolicyUpdateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[167]
+ mi := &file_lightning_proto_msgTypes[171]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15725,7 +15961,7 @@ func (x *PolicyUpdateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyUpdateResponse.ProtoReflect.Descriptor instead.
func (*PolicyUpdateResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{167}
+ return file_lightning_proto_rawDescGZIP(), []int{171}
}
func (x *PolicyUpdateResponse) GetFailedUpdates() []*FailedUpdate {
@@ -15768,7 +16004,7 @@ type ForwardingHistoryRequest struct {
func (x *ForwardingHistoryRequest) Reset() {
*x = ForwardingHistoryRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[168]
+ mi := &file_lightning_proto_msgTypes[172]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15781,7 +16017,7 @@ func (x *ForwardingHistoryRequest) String() string {
func (*ForwardingHistoryRequest) ProtoMessage() {}
func (x *ForwardingHistoryRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[168]
+ mi := &file_lightning_proto_msgTypes[172]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15794,7 +16030,7 @@ func (x *ForwardingHistoryRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ForwardingHistoryRequest.ProtoReflect.Descriptor instead.
func (*ForwardingHistoryRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{168}
+ return file_lightning_proto_rawDescGZIP(), []int{172}
}
func (x *ForwardingHistoryRequest) GetStartTime() uint64 {
@@ -15895,7 +16131,7 @@ type ForwardingEvent struct {
func (x *ForwardingEvent) Reset() {
*x = ForwardingEvent{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[169]
+ mi := &file_lightning_proto_msgTypes[173]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15908,7 +16144,7 @@ func (x *ForwardingEvent) String() string {
func (*ForwardingEvent) ProtoMessage() {}
func (x *ForwardingEvent) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[169]
+ mi := &file_lightning_proto_msgTypes[173]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15921,7 +16157,7 @@ func (x *ForwardingEvent) ProtoReflect() protoreflect.Message {
// Deprecated: Use ForwardingEvent.ProtoReflect.Descriptor instead.
func (*ForwardingEvent) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{169}
+ return file_lightning_proto_rawDescGZIP(), []int{173}
}
// Deprecated: Marked as deprecated in lightning.proto.
@@ -16039,7 +16275,7 @@ type ForwardingHistoryResponse struct {
func (x *ForwardingHistoryResponse) Reset() {
*x = ForwardingHistoryResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[170]
+ mi := &file_lightning_proto_msgTypes[174]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16052,7 +16288,7 @@ func (x *ForwardingHistoryResponse) String() string {
func (*ForwardingHistoryResponse) ProtoMessage() {}
func (x *ForwardingHistoryResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[170]
+ mi := &file_lightning_proto_msgTypes[174]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16065,7 +16301,7 @@ func (x *ForwardingHistoryResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ForwardingHistoryResponse.ProtoReflect.Descriptor instead.
func (*ForwardingHistoryResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{170}
+ return file_lightning_proto_rawDescGZIP(), []int{174}
}
func (x *ForwardingHistoryResponse) GetForwardingEvents() []*ForwardingEvent {
@@ -16094,7 +16330,7 @@ type ExportChannelBackupRequest struct {
func (x *ExportChannelBackupRequest) Reset() {
*x = ExportChannelBackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[171]
+ mi := &file_lightning_proto_msgTypes[175]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16107,7 +16343,7 @@ func (x *ExportChannelBackupRequest) String() string {
func (*ExportChannelBackupRequest) ProtoMessage() {}
func (x *ExportChannelBackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[171]
+ mi := &file_lightning_proto_msgTypes[175]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16120,7 +16356,7 @@ func (x *ExportChannelBackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExportChannelBackupRequest.ProtoReflect.Descriptor instead.
func (*ExportChannelBackupRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{171}
+ return file_lightning_proto_rawDescGZIP(), []int{175}
}
func (x *ExportChannelBackupRequest) GetChanPoint() *ChannelPoint {
@@ -16147,7 +16383,7 @@ type ChannelBackup struct {
func (x *ChannelBackup) Reset() {
*x = ChannelBackup{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[172]
+ mi := &file_lightning_proto_msgTypes[176]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16160,7 +16396,7 @@ func (x *ChannelBackup) String() string {
func (*ChannelBackup) ProtoMessage() {}
func (x *ChannelBackup) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[172]
+ mi := &file_lightning_proto_msgTypes[176]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16173,7 +16409,7 @@ func (x *ChannelBackup) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelBackup.ProtoReflect.Descriptor instead.
func (*ChannelBackup) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{172}
+ return file_lightning_proto_rawDescGZIP(), []int{176}
}
func (x *ChannelBackup) GetChanPoint() *ChannelPoint {
@@ -16207,7 +16443,7 @@ type MultiChanBackup struct {
func (x *MultiChanBackup) Reset() {
*x = MultiChanBackup{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[173]
+ mi := &file_lightning_proto_msgTypes[177]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16220,7 +16456,7 @@ func (x *MultiChanBackup) String() string {
func (*MultiChanBackup) ProtoMessage() {}
func (x *MultiChanBackup) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[173]
+ mi := &file_lightning_proto_msgTypes[177]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16233,7 +16469,7 @@ func (x *MultiChanBackup) ProtoReflect() protoreflect.Message {
// Deprecated: Use MultiChanBackup.ProtoReflect.Descriptor instead.
func (*MultiChanBackup) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{173}
+ return file_lightning_proto_rawDescGZIP(), []int{177}
}
func (x *MultiChanBackup) GetChanPoints() []*ChannelPoint {
@@ -16259,7 +16495,7 @@ type ChanBackupExportRequest struct {
func (x *ChanBackupExportRequest) Reset() {
*x = ChanBackupExportRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[174]
+ mi := &file_lightning_proto_msgTypes[178]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16272,7 +16508,7 @@ func (x *ChanBackupExportRequest) String() string {
func (*ChanBackupExportRequest) ProtoMessage() {}
func (x *ChanBackupExportRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[174]
+ mi := &file_lightning_proto_msgTypes[178]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16285,7 +16521,7 @@ func (x *ChanBackupExportRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChanBackupExportRequest.ProtoReflect.Descriptor instead.
func (*ChanBackupExportRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{174}
+ return file_lightning_proto_rawDescGZIP(), []int{178}
}
type ChanBackupSnapshot struct {
@@ -16304,7 +16540,7 @@ type ChanBackupSnapshot struct {
func (x *ChanBackupSnapshot) Reset() {
*x = ChanBackupSnapshot{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[175]
+ mi := &file_lightning_proto_msgTypes[179]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16317,7 +16553,7 @@ func (x *ChanBackupSnapshot) String() string {
func (*ChanBackupSnapshot) ProtoMessage() {}
func (x *ChanBackupSnapshot) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[175]
+ mi := &file_lightning_proto_msgTypes[179]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16330,7 +16566,7 @@ func (x *ChanBackupSnapshot) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChanBackupSnapshot.ProtoReflect.Descriptor instead.
func (*ChanBackupSnapshot) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{175}
+ return file_lightning_proto_rawDescGZIP(), []int{179}
}
func (x *ChanBackupSnapshot) GetSingleChanBackups() *ChannelBackups {
@@ -16359,7 +16595,7 @@ type ChannelBackups struct {
func (x *ChannelBackups) Reset() {
*x = ChannelBackups{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[176]
+ mi := &file_lightning_proto_msgTypes[180]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16372,7 +16608,7 @@ func (x *ChannelBackups) String() string {
func (*ChannelBackups) ProtoMessage() {}
func (x *ChannelBackups) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[176]
+ mi := &file_lightning_proto_msgTypes[180]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16385,7 +16621,7 @@ func (x *ChannelBackups) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelBackups.ProtoReflect.Descriptor instead.
func (*ChannelBackups) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{176}
+ return file_lightning_proto_rawDescGZIP(), []int{180}
}
func (x *ChannelBackups) GetChanBackups() []*ChannelBackup {
@@ -16410,7 +16646,7 @@ type RestoreChanBackupRequest struct {
func (x *RestoreChanBackupRequest) Reset() {
*x = RestoreChanBackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[177]
+ mi := &file_lightning_proto_msgTypes[181]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16423,7 +16659,7 @@ func (x *RestoreChanBackupRequest) String() string {
func (*RestoreChanBackupRequest) ProtoMessage() {}
func (x *RestoreChanBackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[177]
+ mi := &file_lightning_proto_msgTypes[181]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16436,7 +16672,7 @@ func (x *RestoreChanBackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreChanBackupRequest.ProtoReflect.Descriptor instead.
func (*RestoreChanBackupRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{177}
+ return file_lightning_proto_rawDescGZIP(), []int{181}
}
func (m *RestoreChanBackupRequest) GetBackup() isRestoreChanBackupRequest_Backup {
@@ -16491,7 +16727,7 @@ type RestoreBackupResponse struct {
func (x *RestoreBackupResponse) Reset() {
*x = RestoreBackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[178]
+ mi := &file_lightning_proto_msgTypes[182]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16504,7 +16740,7 @@ func (x *RestoreBackupResponse) String() string {
func (*RestoreBackupResponse) ProtoMessage() {}
func (x *RestoreBackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[178]
+ mi := &file_lightning_proto_msgTypes[182]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16517,7 +16753,7 @@ func (x *RestoreBackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreBackupResponse.ProtoReflect.Descriptor instead.
func (*RestoreBackupResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{178}
+ return file_lightning_proto_rawDescGZIP(), []int{182}
}
func (x *RestoreBackupResponse) GetNumRestored() uint32 {
@@ -16536,7 +16772,7 @@ type ChannelBackupSubscription struct {
func (x *ChannelBackupSubscription) Reset() {
*x = ChannelBackupSubscription{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[179]
+ mi := &file_lightning_proto_msgTypes[183]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16549,7 +16785,7 @@ func (x *ChannelBackupSubscription) String() string {
func (*ChannelBackupSubscription) ProtoMessage() {}
func (x *ChannelBackupSubscription) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[179]
+ mi := &file_lightning_proto_msgTypes[183]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16562,7 +16798,7 @@ func (x *ChannelBackupSubscription) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelBackupSubscription.ProtoReflect.Descriptor instead.
func (*ChannelBackupSubscription) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{179}
+ return file_lightning_proto_rawDescGZIP(), []int{183}
}
type VerifyChanBackupResponse struct {
@@ -16576,7 +16812,7 @@ type VerifyChanBackupResponse struct {
func (x *VerifyChanBackupResponse) Reset() {
*x = VerifyChanBackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[180]
+ mi := &file_lightning_proto_msgTypes[184]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16589,7 +16825,7 @@ func (x *VerifyChanBackupResponse) String() string {
func (*VerifyChanBackupResponse) ProtoMessage() {}
func (x *VerifyChanBackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[180]
+ mi := &file_lightning_proto_msgTypes[184]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16602,7 +16838,7 @@ func (x *VerifyChanBackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VerifyChanBackupResponse.ProtoReflect.Descriptor instead.
func (*VerifyChanBackupResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{180}
+ return file_lightning_proto_rawDescGZIP(), []int{184}
}
func (x *VerifyChanBackupResponse) GetChanPoints() []string {
@@ -16626,7 +16862,7 @@ type MacaroonPermission struct {
func (x *MacaroonPermission) Reset() {
*x = MacaroonPermission{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[181]
+ mi := &file_lightning_proto_msgTypes[185]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16639,7 +16875,7 @@ func (x *MacaroonPermission) String() string {
func (*MacaroonPermission) ProtoMessage() {}
func (x *MacaroonPermission) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[181]
+ mi := &file_lightning_proto_msgTypes[185]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16652,7 +16888,7 @@ func (x *MacaroonPermission) ProtoReflect() protoreflect.Message {
// Deprecated: Use MacaroonPermission.ProtoReflect.Descriptor instead.
func (*MacaroonPermission) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{181}
+ return file_lightning_proto_rawDescGZIP(), []int{185}
}
func (x *MacaroonPermission) GetEntity() string {
@@ -16686,7 +16922,7 @@ type BakeMacaroonRequest struct {
func (x *BakeMacaroonRequest) Reset() {
*x = BakeMacaroonRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[182]
+ mi := &file_lightning_proto_msgTypes[186]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16699,7 +16935,7 @@ func (x *BakeMacaroonRequest) String() string {
func (*BakeMacaroonRequest) ProtoMessage() {}
func (x *BakeMacaroonRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[182]
+ mi := &file_lightning_proto_msgTypes[186]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16712,7 +16948,7 @@ func (x *BakeMacaroonRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use BakeMacaroonRequest.ProtoReflect.Descriptor instead.
func (*BakeMacaroonRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{182}
+ return file_lightning_proto_rawDescGZIP(), []int{186}
}
func (x *BakeMacaroonRequest) GetPermissions() []*MacaroonPermission {
@@ -16748,7 +16984,7 @@ type BakeMacaroonResponse struct {
func (x *BakeMacaroonResponse) Reset() {
*x = BakeMacaroonResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[183]
+ mi := &file_lightning_proto_msgTypes[187]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16761,7 +16997,7 @@ func (x *BakeMacaroonResponse) String() string {
func (*BakeMacaroonResponse) ProtoMessage() {}
func (x *BakeMacaroonResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[183]
+ mi := &file_lightning_proto_msgTypes[187]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16774,7 +17010,7 @@ func (x *BakeMacaroonResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use BakeMacaroonResponse.ProtoReflect.Descriptor instead.
func (*BakeMacaroonResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{183}
+ return file_lightning_proto_rawDescGZIP(), []int{187}
}
func (x *BakeMacaroonResponse) GetMacaroon() string {
@@ -16793,7 +17029,7 @@ type ListMacaroonIDsRequest struct {
func (x *ListMacaroonIDsRequest) Reset() {
*x = ListMacaroonIDsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[184]
+ mi := &file_lightning_proto_msgTypes[188]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16806,7 +17042,7 @@ func (x *ListMacaroonIDsRequest) String() string {
func (*ListMacaroonIDsRequest) ProtoMessage() {}
func (x *ListMacaroonIDsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[184]
+ mi := &file_lightning_proto_msgTypes[188]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16819,7 +17055,7 @@ func (x *ListMacaroonIDsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListMacaroonIDsRequest.ProtoReflect.Descriptor instead.
func (*ListMacaroonIDsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{184}
+ return file_lightning_proto_rawDescGZIP(), []int{188}
}
type ListMacaroonIDsResponse struct {
@@ -16834,7 +17070,7 @@ type ListMacaroonIDsResponse struct {
func (x *ListMacaroonIDsResponse) Reset() {
*x = ListMacaroonIDsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[185]
+ mi := &file_lightning_proto_msgTypes[189]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16847,7 +17083,7 @@ func (x *ListMacaroonIDsResponse) String() string {
func (*ListMacaroonIDsResponse) ProtoMessage() {}
func (x *ListMacaroonIDsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[185]
+ mi := &file_lightning_proto_msgTypes[189]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16860,7 +17096,7 @@ func (x *ListMacaroonIDsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListMacaroonIDsResponse.ProtoReflect.Descriptor instead.
func (*ListMacaroonIDsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{185}
+ return file_lightning_proto_rawDescGZIP(), []int{189}
}
func (x *ListMacaroonIDsResponse) GetRootKeyIds() []uint64 {
@@ -16882,7 +17118,7 @@ type DeleteMacaroonIDRequest struct {
func (x *DeleteMacaroonIDRequest) Reset() {
*x = DeleteMacaroonIDRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[186]
+ mi := &file_lightning_proto_msgTypes[190]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16895,7 +17131,7 @@ func (x *DeleteMacaroonIDRequest) String() string {
func (*DeleteMacaroonIDRequest) ProtoMessage() {}
func (x *DeleteMacaroonIDRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[186]
+ mi := &file_lightning_proto_msgTypes[190]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16908,7 +17144,7 @@ func (x *DeleteMacaroonIDRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeleteMacaroonIDRequest.ProtoReflect.Descriptor instead.
func (*DeleteMacaroonIDRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{186}
+ return file_lightning_proto_rawDescGZIP(), []int{190}
}
func (x *DeleteMacaroonIDRequest) GetRootKeyId() uint64 {
@@ -16930,7 +17166,7 @@ type DeleteMacaroonIDResponse struct {
func (x *DeleteMacaroonIDResponse) Reset() {
*x = DeleteMacaroonIDResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[187]
+ mi := &file_lightning_proto_msgTypes[191]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16943,7 +17179,7 @@ func (x *DeleteMacaroonIDResponse) String() string {
func (*DeleteMacaroonIDResponse) ProtoMessage() {}
func (x *DeleteMacaroonIDResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[187]
+ mi := &file_lightning_proto_msgTypes[191]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16956,7 +17192,7 @@ func (x *DeleteMacaroonIDResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeleteMacaroonIDResponse.ProtoReflect.Descriptor instead.
func (*DeleteMacaroonIDResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{187}
+ return file_lightning_proto_rawDescGZIP(), []int{191}
}
func (x *DeleteMacaroonIDResponse) GetDeleted() bool {
@@ -16978,7 +17214,7 @@ type MacaroonPermissionList struct {
func (x *MacaroonPermissionList) Reset() {
*x = MacaroonPermissionList{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[188]
+ mi := &file_lightning_proto_msgTypes[192]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16991,7 +17227,7 @@ func (x *MacaroonPermissionList) String() string {
func (*MacaroonPermissionList) ProtoMessage() {}
func (x *MacaroonPermissionList) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[188]
+ mi := &file_lightning_proto_msgTypes[192]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17004,7 +17240,7 @@ func (x *MacaroonPermissionList) ProtoReflect() protoreflect.Message {
// Deprecated: Use MacaroonPermissionList.ProtoReflect.Descriptor instead.
func (*MacaroonPermissionList) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{188}
+ return file_lightning_proto_rawDescGZIP(), []int{192}
}
func (x *MacaroonPermissionList) GetPermissions() []*MacaroonPermission {
@@ -17023,7 +17259,7 @@ type ListPermissionsRequest struct {
func (x *ListPermissionsRequest) Reset() {
*x = ListPermissionsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[189]
+ mi := &file_lightning_proto_msgTypes[193]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17036,7 +17272,7 @@ func (x *ListPermissionsRequest) String() string {
func (*ListPermissionsRequest) ProtoMessage() {}
func (x *ListPermissionsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[189]
+ mi := &file_lightning_proto_msgTypes[193]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17049,7 +17285,7 @@ func (x *ListPermissionsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPermissionsRequest.ProtoReflect.Descriptor instead.
func (*ListPermissionsRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{189}
+ return file_lightning_proto_rawDescGZIP(), []int{193}
}
type ListPermissionsResponse struct {
@@ -17065,7 +17301,7 @@ type ListPermissionsResponse struct {
func (x *ListPermissionsResponse) Reset() {
*x = ListPermissionsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[190]
+ mi := &file_lightning_proto_msgTypes[194]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17078,7 +17314,7 @@ func (x *ListPermissionsResponse) String() string {
func (*ListPermissionsResponse) ProtoMessage() {}
func (x *ListPermissionsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[190]
+ mi := &file_lightning_proto_msgTypes[194]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17091,7 +17327,7 @@ func (x *ListPermissionsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListPermissionsResponse.ProtoReflect.Descriptor instead.
func (*ListPermissionsResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{190}
+ return file_lightning_proto_rawDescGZIP(), []int{194}
}
func (x *ListPermissionsResponse) GetMethodPermissions() map[string]*MacaroonPermissionList {
@@ -17128,7 +17364,7 @@ type Failure struct {
func (x *Failure) Reset() {
*x = Failure{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[191]
+ mi := &file_lightning_proto_msgTypes[195]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17141,7 +17377,7 @@ func (x *Failure) String() string {
func (*Failure) ProtoMessage() {}
func (x *Failure) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[191]
+ mi := &file_lightning_proto_msgTypes[195]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17154,7 +17390,7 @@ func (x *Failure) ProtoReflect() protoreflect.Message {
// Deprecated: Use Failure.ProtoReflect.Descriptor instead.
func (*Failure) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{191}
+ return file_lightning_proto_rawDescGZIP(), []int{195}
}
func (x *Failure) GetCode() Failure_FailureCode {
@@ -17268,7 +17504,7 @@ type ChannelUpdate struct {
func (x *ChannelUpdate) Reset() {
*x = ChannelUpdate{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[192]
+ mi := &file_lightning_proto_msgTypes[196]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17281,7 +17517,7 @@ func (x *ChannelUpdate) String() string {
func (*ChannelUpdate) ProtoMessage() {}
func (x *ChannelUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[192]
+ mi := &file_lightning_proto_msgTypes[196]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17294,7 +17530,7 @@ func (x *ChannelUpdate) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChannelUpdate.ProtoReflect.Descriptor instead.
func (*ChannelUpdate) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{192}
+ return file_lightning_proto_rawDescGZIP(), []int{196}
}
func (x *ChannelUpdate) GetSignature() []byte {
@@ -17394,7 +17630,7 @@ type MacaroonId struct {
func (x *MacaroonId) Reset() {
*x = MacaroonId{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[193]
+ mi := &file_lightning_proto_msgTypes[197]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17407,7 +17643,7 @@ func (x *MacaroonId) String() string {
func (*MacaroonId) ProtoMessage() {}
func (x *MacaroonId) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[193]
+ mi := &file_lightning_proto_msgTypes[197]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17420,7 +17656,7 @@ func (x *MacaroonId) ProtoReflect() protoreflect.Message {
// Deprecated: Use MacaroonId.ProtoReflect.Descriptor instead.
func (*MacaroonId) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{193}
+ return file_lightning_proto_rawDescGZIP(), []int{197}
}
func (x *MacaroonId) GetNonce() []byte {
@@ -17456,7 +17692,7 @@ type Op struct {
func (x *Op) Reset() {
*x = Op{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[194]
+ mi := &file_lightning_proto_msgTypes[198]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17469,7 +17705,7 @@ func (x *Op) String() string {
func (*Op) ProtoMessage() {}
func (x *Op) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[194]
+ mi := &file_lightning_proto_msgTypes[198]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17482,7 +17718,7 @@ func (x *Op) ProtoReflect() protoreflect.Message {
// Deprecated: Use Op.ProtoReflect.Descriptor instead.
func (*Op) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{194}
+ return file_lightning_proto_rawDescGZIP(), []int{198}
}
func (x *Op) GetEntity() string {
@@ -17537,7 +17773,7 @@ type CheckMacPermRequest struct {
func (x *CheckMacPermRequest) Reset() {
*x = CheckMacPermRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[195]
+ mi := &file_lightning_proto_msgTypes[199]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17550,7 +17786,7 @@ func (x *CheckMacPermRequest) String() string {
func (*CheckMacPermRequest) ProtoMessage() {}
func (x *CheckMacPermRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[195]
+ mi := &file_lightning_proto_msgTypes[199]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17563,7 +17799,7 @@ func (x *CheckMacPermRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use CheckMacPermRequest.ProtoReflect.Descriptor instead.
func (*CheckMacPermRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{195}
+ return file_lightning_proto_rawDescGZIP(), []int{199}
}
func (x *CheckMacPermRequest) GetMacaroon() []byte {
@@ -17605,7 +17841,7 @@ type CheckMacPermResponse struct {
func (x *CheckMacPermResponse) Reset() {
*x = CheckMacPermResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[196]
+ mi := &file_lightning_proto_msgTypes[200]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17618,7 +17854,7 @@ func (x *CheckMacPermResponse) String() string {
func (*CheckMacPermResponse) ProtoMessage() {}
func (x *CheckMacPermResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[196]
+ mi := &file_lightning_proto_msgTypes[200]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17631,7 +17867,7 @@ func (x *CheckMacPermResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use CheckMacPermResponse.ProtoReflect.Descriptor instead.
func (*CheckMacPermResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{196}
+ return file_lightning_proto_rawDescGZIP(), []int{200}
}
func (x *CheckMacPermResponse) GetValid() bool {
@@ -17691,7 +17927,7 @@ type RPCMiddlewareRequest struct {
func (x *RPCMiddlewareRequest) Reset() {
*x = RPCMiddlewareRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[197]
+ mi := &file_lightning_proto_msgTypes[201]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17704,7 +17940,7 @@ func (x *RPCMiddlewareRequest) String() string {
func (*RPCMiddlewareRequest) ProtoMessage() {}
func (x *RPCMiddlewareRequest) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[197]
+ mi := &file_lightning_proto_msgTypes[201]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17717,7 +17953,7 @@ func (x *RPCMiddlewareRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RPCMiddlewareRequest.ProtoReflect.Descriptor instead.
func (*RPCMiddlewareRequest) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{197}
+ return file_lightning_proto_rawDescGZIP(), []int{201}
}
func (x *RPCMiddlewareRequest) GetRequestId() uint64 {
@@ -17850,7 +18086,7 @@ type MetadataValues struct {
func (x *MetadataValues) Reset() {
*x = MetadataValues{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[198]
+ mi := &file_lightning_proto_msgTypes[202]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17863,7 +18099,7 @@ func (x *MetadataValues) String() string {
func (*MetadataValues) ProtoMessage() {}
func (x *MetadataValues) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[198]
+ mi := &file_lightning_proto_msgTypes[202]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17876,7 +18112,7 @@ func (x *MetadataValues) ProtoReflect() protoreflect.Message {
// Deprecated: Use MetadataValues.ProtoReflect.Descriptor instead.
func (*MetadataValues) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{198}
+ return file_lightning_proto_rawDescGZIP(), []int{202}
}
func (x *MetadataValues) GetValues() []string {
@@ -17900,7 +18136,7 @@ type StreamAuth struct {
func (x *StreamAuth) Reset() {
*x = StreamAuth{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[199]
+ mi := &file_lightning_proto_msgTypes[203]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17913,7 +18149,7 @@ func (x *StreamAuth) String() string {
func (*StreamAuth) ProtoMessage() {}
func (x *StreamAuth) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[199]
+ mi := &file_lightning_proto_msgTypes[203]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17926,7 +18162,7 @@ func (x *StreamAuth) ProtoReflect() protoreflect.Message {
// Deprecated: Use StreamAuth.ProtoReflect.Descriptor instead.
func (*StreamAuth) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{199}
+ return file_lightning_proto_rawDescGZIP(), []int{203}
}
func (x *StreamAuth) GetMethodFullUri() string {
@@ -17963,7 +18199,7 @@ type RPCMessage struct {
func (x *RPCMessage) Reset() {
*x = RPCMessage{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[200]
+ mi := &file_lightning_proto_msgTypes[204]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -17976,7 +18212,7 @@ func (x *RPCMessage) String() string {
func (*RPCMessage) ProtoMessage() {}
func (x *RPCMessage) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[200]
+ mi := &file_lightning_proto_msgTypes[204]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -17989,7 +18225,7 @@ func (x *RPCMessage) ProtoReflect() protoreflect.Message {
// Deprecated: Use RPCMessage.ProtoReflect.Descriptor instead.
func (*RPCMessage) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{200}
+ return file_lightning_proto_rawDescGZIP(), []int{204}
}
func (x *RPCMessage) GetMethodFullUri() string {
@@ -18050,7 +18286,7 @@ type RPCMiddlewareResponse struct {
func (x *RPCMiddlewareResponse) Reset() {
*x = RPCMiddlewareResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[201]
+ mi := &file_lightning_proto_msgTypes[205]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18063,7 +18299,7 @@ func (x *RPCMiddlewareResponse) String() string {
func (*RPCMiddlewareResponse) ProtoMessage() {}
func (x *RPCMiddlewareResponse) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[201]
+ mi := &file_lightning_proto_msgTypes[205]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18076,7 +18312,7 @@ func (x *RPCMiddlewareResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RPCMiddlewareResponse.ProtoReflect.Descriptor instead.
func (*RPCMiddlewareResponse) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{201}
+ return file_lightning_proto_rawDescGZIP(), []int{205}
}
func (x *RPCMiddlewareResponse) GetRefMsgId() uint64 {
@@ -18162,7 +18398,7 @@ type MiddlewareRegistration struct {
func (x *MiddlewareRegistration) Reset() {
*x = MiddlewareRegistration{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[202]
+ mi := &file_lightning_proto_msgTypes[206]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18175,7 +18411,7 @@ func (x *MiddlewareRegistration) String() string {
func (*MiddlewareRegistration) ProtoMessage() {}
func (x *MiddlewareRegistration) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[202]
+ mi := &file_lightning_proto_msgTypes[206]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18188,7 +18424,7 @@ func (x *MiddlewareRegistration) ProtoReflect() protoreflect.Message {
// Deprecated: Use MiddlewareRegistration.ProtoReflect.Descriptor instead.
func (*MiddlewareRegistration) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{202}
+ return file_lightning_proto_rawDescGZIP(), []int{206}
}
func (x *MiddlewareRegistration) GetMiddlewareName() string {
@@ -18235,7 +18471,7 @@ type InterceptFeedback struct {
func (x *InterceptFeedback) Reset() {
*x = InterceptFeedback{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[203]
+ mi := &file_lightning_proto_msgTypes[207]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18248,7 +18484,7 @@ func (x *InterceptFeedback) String() string {
func (*InterceptFeedback) ProtoMessage() {}
func (x *InterceptFeedback) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[203]
+ mi := &file_lightning_proto_msgTypes[207]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18261,7 +18497,7 @@ func (x *InterceptFeedback) ProtoReflect() protoreflect.Message {
// Deprecated: Use InterceptFeedback.ProtoReflect.Descriptor instead.
func (*InterceptFeedback) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{203}
+ return file_lightning_proto_rawDescGZIP(), []int{207}
}
func (x *InterceptFeedback) GetError() string {
@@ -18322,7 +18558,7 @@ type PendingChannelsResponse_PendingChannel struct {
func (x *PendingChannelsResponse_PendingChannel) Reset() {
*x = PendingChannelsResponse_PendingChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[210]
+ mi := &file_lightning_proto_msgTypes[214]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18335,7 +18571,7 @@ func (x *PendingChannelsResponse_PendingChannel) String() string {
func (*PendingChannelsResponse_PendingChannel) ProtoMessage() {}
func (x *PendingChannelsResponse_PendingChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[210]
+ mi := &file_lightning_proto_msgTypes[214]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18348,7 +18584,7 @@ func (x *PendingChannelsResponse_PendingChannel) ProtoReflect() protoreflect.Mes
// Deprecated: Use PendingChannelsResponse_PendingChannel.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_PendingChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 0}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 0}
}
func (x *PendingChannelsResponse_PendingChannel) GetRemoteNodePub() string {
@@ -18500,7 +18736,7 @@ type PendingChannelsResponse_PendingOpenChannel struct {
func (x *PendingChannelsResponse_PendingOpenChannel) Reset() {
*x = PendingChannelsResponse_PendingOpenChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[211]
+ mi := &file_lightning_proto_msgTypes[215]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18513,7 +18749,7 @@ func (x *PendingChannelsResponse_PendingOpenChannel) String() string {
func (*PendingChannelsResponse_PendingOpenChannel) ProtoMessage() {}
func (x *PendingChannelsResponse_PendingOpenChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[211]
+ mi := &file_lightning_proto_msgTypes[215]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18526,7 +18762,7 @@ func (x *PendingChannelsResponse_PendingOpenChannel) ProtoReflect() protoreflect
// Deprecated: Use PendingChannelsResponse_PendingOpenChannel.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_PendingOpenChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 1}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 1}
}
func (x *PendingChannelsResponse_PendingOpenChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
@@ -18600,7 +18836,7 @@ type PendingChannelsResponse_WaitingCloseChannel struct {
func (x *PendingChannelsResponse_WaitingCloseChannel) Reset() {
*x = PendingChannelsResponse_WaitingCloseChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[212]
+ mi := &file_lightning_proto_msgTypes[216]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18613,7 +18849,7 @@ func (x *PendingChannelsResponse_WaitingCloseChannel) String() string {
func (*PendingChannelsResponse_WaitingCloseChannel) ProtoMessage() {}
func (x *PendingChannelsResponse_WaitingCloseChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[212]
+ mi := &file_lightning_proto_msgTypes[216]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18626,7 +18862,7 @@ func (x *PendingChannelsResponse_WaitingCloseChannel) ProtoReflect() protoreflec
// Deprecated: Use PendingChannelsResponse_WaitingCloseChannel.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_WaitingCloseChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 2}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 2}
}
func (x *PendingChannelsResponse_WaitingCloseChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
@@ -18689,7 +18925,7 @@ type PendingChannelsResponse_Commitments struct {
func (x *PendingChannelsResponse_Commitments) Reset() {
*x = PendingChannelsResponse_Commitments{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[213]
+ mi := &file_lightning_proto_msgTypes[217]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18702,7 +18938,7 @@ func (x *PendingChannelsResponse_Commitments) String() string {
func (*PendingChannelsResponse_Commitments) ProtoMessage() {}
func (x *PendingChannelsResponse_Commitments) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[213]
+ mi := &file_lightning_proto_msgTypes[217]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18715,7 +18951,7 @@ func (x *PendingChannelsResponse_Commitments) ProtoReflect() protoreflect.Messag
// Deprecated: Use PendingChannelsResponse_Commitments.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_Commitments) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 3}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 3}
}
func (x *PendingChannelsResponse_Commitments) GetLocalTxid() string {
@@ -18774,7 +19010,7 @@ type PendingChannelsResponse_ClosedChannel struct {
func (x *PendingChannelsResponse_ClosedChannel) Reset() {
*x = PendingChannelsResponse_ClosedChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[214]
+ mi := &file_lightning_proto_msgTypes[218]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18787,7 +19023,7 @@ func (x *PendingChannelsResponse_ClosedChannel) String() string {
func (*PendingChannelsResponse_ClosedChannel) ProtoMessage() {}
func (x *PendingChannelsResponse_ClosedChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[214]
+ mi := &file_lightning_proto_msgTypes[218]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18800,7 +19036,7 @@ func (x *PendingChannelsResponse_ClosedChannel) ProtoReflect() protoreflect.Mess
// Deprecated: Use PendingChannelsResponse_ClosedChannel.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_ClosedChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 4}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 4}
}
func (x *PendingChannelsResponse_ClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
@@ -18843,7 +19079,7 @@ type PendingChannelsResponse_ForceClosedChannel struct {
func (x *PendingChannelsResponse_ForceClosedChannel) Reset() {
*x = PendingChannelsResponse_ForceClosedChannel{}
if protoimpl.UnsafeEnabled {
- mi := &file_lightning_proto_msgTypes[215]
+ mi := &file_lightning_proto_msgTypes[219]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -18856,7 +19092,7 @@ func (x *PendingChannelsResponse_ForceClosedChannel) String() string {
func (*PendingChannelsResponse_ForceClosedChannel) ProtoMessage() {}
func (x *PendingChannelsResponse_ForceClosedChannel) ProtoReflect() protoreflect.Message {
- mi := &file_lightning_proto_msgTypes[215]
+ mi := &file_lightning_proto_msgTypes[219]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -18869,7 +19105,7 @@ func (x *PendingChannelsResponse_ForceClosedChannel) ProtoReflect() protoreflect
// Deprecated: Use PendingChannelsResponse_ForceClosedChannel.ProtoReflect.Descriptor instead.
func (*PendingChannelsResponse_ForceClosedChannel) Descriptor() ([]byte, []int) {
- return file_lightning_proto_rawDescGZIP(), []int{89, 5}
+ return file_lightning_proto_rawDescGZIP(), []int{93, 5}
}
func (x *PendingChannelsResponse_ForceClosedChannel) GetChannel() *PendingChannelsResponse_PendingChannel {
@@ -18959,3230 +19195,3257 @@ var file_lightning_proto_rawDesc = []byte{
0x53, 0x65, 0x6e, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x04, 0x55, 0x74, 0x78, 0x6f, 0x12, 0x35, 0x0a, 0x0c, 0x61, 0x64,
- 0x64, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x12, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61,
- 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x73, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x09, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x61, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x6b,
- 0x5f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
- 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x12, 0x2b, 0x0a, 0x08, 0x6f, 0x75, 0x74, 0x70, 0x6f,
- 0x69, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6c, 0x6e, 0x72, 0x70,
- 0x63, 0x2e, 0x4f, 0x75, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x08, 0x6f, 0x75, 0x74, 0x70,
- 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x6f, 0x6e,
- 0x66, 0x69, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xe0, 0x01, 0x0a, 0x0c, 0x4f,
- 0x75, 0x74, 0x70, 0x75, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x38, 0x0a, 0x0b, 0x6f,
- 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x17, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x6f, 0x75, 0x74, 0x70, 0x75,
- 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
- 0x1b, 0x0a, 0x09, 0x70, 0x6b, 0x5f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x70, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12,
- 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x6f, 0x75,
- 0x72, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0c, 0x69, 0x73, 0x4f, 0x75, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0xce, 0x03,
- 0x0a, 0x0b, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a,
- 0x07, 0x74, 0x78, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x74, 0x78, 0x48, 0x61, 0x73, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2b,
- 0x0a, 0x11, 0x6e, 0x75, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x6e, 0x75, 0x6d, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x62,
- 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x48, 0x61, 0x73, 0x68, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x6c,
- 0x6f, 0x63, 0x6b, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05,
- 0x52, 0x0b, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x1d, 0x0a,
- 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x66, 0x65, 0x65, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x46, 0x65, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x0e, 0x64,
- 0x65, 0x73, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x18, 0x08, 0x20,
- 0x03, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0d, 0x64, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x0e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
- 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13,
- 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x52, 0x0d, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x12, 0x1c, 0x0a, 0x0a, 0x72, 0x61, 0x77, 0x5f, 0x74, 0x78, 0x5f, 0x68, 0x65, 0x78,
- 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x61, 0x77, 0x54, 0x78, 0x48, 0x65, 0x78,
- 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x46, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f,
- 0x75, 0x73, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x0c, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69,
- 0x6f, 0x75, 0x73, 0x4f, 0x75, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x11, 0x70, 0x72, 0x65,
- 0x76, 0x69, 0x6f, 0x75, 0x73, 0x4f, 0x75, 0x74, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0xc2,
- 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x74, 0x61,
- 0x72, 0x74, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
- 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x1d, 0x0a, 0x0a,
- 0x65, 0x6e, 0x64, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
- 0x52, 0x09, 0x65, 0x6e, 0x64, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61,
- 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x5f, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x69, 0x6e, 0x64,
- 0x65, 0x78, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x6d, 0x61, 0x78, 0x5f,
- 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x0d, 0x52, 0x0f, 0x6d, 0x61, 0x78, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x22, 0x8c, 0x01, 0x0a, 0x12, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x36, 0x0a, 0x0c, 0x74, 0x72,
- 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x12, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x64, 0x65,
- 0x78, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x49, 0x6e, 0x64,
- 0x65, 0x78, 0x22, 0x68, 0x0a, 0x08, 0x46, 0x65, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16,
- 0x0a, 0x05, 0x66, 0x69, 0x78, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52,
- 0x05, 0x66, 0x69, 0x78, 0x65, 0x64, 0x12, 0x1f, 0x0a, 0x0a, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f,
- 0x6d, 0x73, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x09, 0x66, 0x69,
- 0x78, 0x65, 0x64, 0x4d, 0x73, 0x61, 0x74, 0x12, 0x1a, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65,
- 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x07, 0x70, 0x65, 0x72, 0x63,
- 0x65, 0x6e, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xea, 0x05, 0x0a,
- 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
- 0x64, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64,Why this scored 25/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.