2018-10-23 07:43:47 +03:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: routerrpc/router.proto
2019-05-15 16:07:30 +03:00
package routerrpc
2018-10-23 07:43:47 +03:00
import (
2019-05-15 16:07:30 +03:00
context "context"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
lnrpc "github.com/lightningnetwork/lnd/lnrpc"
2018-10-23 07:43:47 +03:00
grpc "google.golang.org/grpc"
2019-05-15 16:07:30 +03:00
math "math"
2018-10-23 07:43:47 +03:00
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto . Marshal
var _ = fmt . Errorf
var _ = math . Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
2019-05-15 16:07:30 +03:00
const _ = proto . ProtoPackageIsVersion3 // please upgrade the proto package
2018-10-23 07:43:47 +03:00
2020-03-13 10:30:16 +03:00
type FailureDetail int32
const (
FailureDetail_UNKNOWN FailureDetail = 0
FailureDetail_NO_DETAIL FailureDetail = 1
FailureDetail_ONION_DECODE FailureDetail = 2
FailureDetail_LINK_NOT_ELIGIBLE FailureDetail = 3
FailureDetail_ON_CHAIN_TIMEOUT FailureDetail = 4
FailureDetail_HTLC_EXCEEDS_MAX FailureDetail = 5
FailureDetail_INSUFFICIENT_BALANCE FailureDetail = 6
FailureDetail_INCOMPLETE_FORWARD FailureDetail = 7
FailureDetail_HTLC_ADD_FAILED FailureDetail = 8
FailureDetail_FORWARDS_DISABLED FailureDetail = 9
FailureDetail_INVOICE_CANCELED FailureDetail = 10
FailureDetail_INVOICE_UNDERPAID FailureDetail = 11
FailureDetail_INVOICE_EXPIRY_TOO_SOON FailureDetail = 12
FailureDetail_INVOICE_NOT_OPEN FailureDetail = 13
FailureDetail_MPP_INVOICE_TIMEOUT FailureDetail = 14
FailureDetail_ADDRESS_MISMATCH FailureDetail = 15
FailureDetail_SET_TOTAL_MISMATCH FailureDetail = 16
FailureDetail_SET_TOTAL_TOO_LOW FailureDetail = 17
FailureDetail_SET_OVERPAID FailureDetail = 18
FailureDetail_UNKNOWN_INVOICE FailureDetail = 19
FailureDetail_INVALID_KEYSEND FailureDetail = 20
FailureDetail_MPP_IN_PROGRESS FailureDetail = 21
FailureDetail_CIRCULAR_ROUTE FailureDetail = 22
)
var FailureDetail_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "NO_DETAIL" ,
2 : "ONION_DECODE" ,
3 : "LINK_NOT_ELIGIBLE" ,
4 : "ON_CHAIN_TIMEOUT" ,
5 : "HTLC_EXCEEDS_MAX" ,
6 : "INSUFFICIENT_BALANCE" ,
7 : "INCOMPLETE_FORWARD" ,
8 : "HTLC_ADD_FAILED" ,
9 : "FORWARDS_DISABLED" ,
10 : "INVOICE_CANCELED" ,
11 : "INVOICE_UNDERPAID" ,
12 : "INVOICE_EXPIRY_TOO_SOON" ,
13 : "INVOICE_NOT_OPEN" ,
14 : "MPP_INVOICE_TIMEOUT" ,
15 : "ADDRESS_MISMATCH" ,
16 : "SET_TOTAL_MISMATCH" ,
17 : "SET_TOTAL_TOO_LOW" ,
18 : "SET_OVERPAID" ,
19 : "UNKNOWN_INVOICE" ,
20 : "INVALID_KEYSEND" ,
21 : "MPP_IN_PROGRESS" ,
22 : "CIRCULAR_ROUTE" ,
}
var FailureDetail_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"NO_DETAIL" : 1 ,
"ONION_DECODE" : 2 ,
"LINK_NOT_ELIGIBLE" : 3 ,
"ON_CHAIN_TIMEOUT" : 4 ,
"HTLC_EXCEEDS_MAX" : 5 ,
"INSUFFICIENT_BALANCE" : 6 ,
"INCOMPLETE_FORWARD" : 7 ,
"HTLC_ADD_FAILED" : 8 ,
"FORWARDS_DISABLED" : 9 ,
"INVOICE_CANCELED" : 10 ,
"INVOICE_UNDERPAID" : 11 ,
"INVOICE_EXPIRY_TOO_SOON" : 12 ,
"INVOICE_NOT_OPEN" : 13 ,
"MPP_INVOICE_TIMEOUT" : 14 ,
"ADDRESS_MISMATCH" : 15 ,
"SET_TOTAL_MISMATCH" : 16 ,
"SET_TOTAL_TOO_LOW" : 17 ,
"SET_OVERPAID" : 18 ,
"UNKNOWN_INVOICE" : 19 ,
"INVALID_KEYSEND" : 20 ,
"MPP_IN_PROGRESS" : 21 ,
"CIRCULAR_ROUTE" : 22 ,
}
func ( x FailureDetail ) String ( ) string {
return proto . EnumName ( FailureDetail_name , int32 ( x ) )
}
func ( FailureDetail ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 0 }
2020-03-13 10:30:16 +03:00
}
2020-04-13 13:16:55 +03:00
type PaymentState int32
const (
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Payment is still in flight.
PaymentState_IN_FLIGHT PaymentState = 0
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Payment completed successfully.
PaymentState_SUCCEEDED PaymentState = 1
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//There are more routes to try, but the payment timeout was exceeded.
PaymentState_FAILED_TIMEOUT PaymentState = 2
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//All possible routes were tried and failed permanently. Or were no
//routes to the destination at all.
PaymentState_FAILED_NO_ROUTE PaymentState = 3
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//A non-recoverable error has occured.
PaymentState_FAILED_ERROR PaymentState = 4
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Payment details incorrect (unknown hash, invalid amt or
//invalid final cltv delta)
PaymentState_FAILED_INCORRECT_PAYMENT_DETAILS PaymentState = 5
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Insufficient local balance.
PaymentState_FAILED_INSUFFICIENT_BALANCE PaymentState = 6
)
var PaymentState_name = map [ int32 ] string {
0 : "IN_FLIGHT" ,
1 : "SUCCEEDED" ,
2 : "FAILED_TIMEOUT" ,
3 : "FAILED_NO_ROUTE" ,
4 : "FAILED_ERROR" ,
5 : "FAILED_INCORRECT_PAYMENT_DETAILS" ,
6 : "FAILED_INSUFFICIENT_BALANCE" ,
}
var PaymentState_value = map [ string ] int32 {
"IN_FLIGHT" : 0 ,
"SUCCEEDED" : 1 ,
"FAILED_TIMEOUT" : 2 ,
"FAILED_NO_ROUTE" : 3 ,
"FAILED_ERROR" : 4 ,
"FAILED_INCORRECT_PAYMENT_DETAILS" : 5 ,
"FAILED_INSUFFICIENT_BALANCE" : 6 ,
}
func ( x PaymentState ) String ( ) string {
return proto . EnumName ( PaymentState_name , int32 ( x ) )
}
func ( PaymentState ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 1 }
}
2020-03-13 10:30:16 +03:00
type HtlcEvent_EventType int32
const (
HtlcEvent_UNKNOWN HtlcEvent_EventType = 0
HtlcEvent_SEND HtlcEvent_EventType = 1
HtlcEvent_RECEIVE HtlcEvent_EventType = 2
HtlcEvent_FORWARD HtlcEvent_EventType = 3
)
var HtlcEvent_EventType_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "SEND" ,
2 : "RECEIVE" ,
3 : "FORWARD" ,
}
var HtlcEvent_EventType_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"SEND" : 1 ,
"RECEIVE" : 2 ,
"FORWARD" : 3 ,
}
func ( x HtlcEvent_EventType ) String ( ) string {
return proto . EnumName ( HtlcEvent_EventType_name , int32 ( x ) )
}
func ( HtlcEvent_EventType ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 17 , 0 }
2020-03-13 10:30:16 +03:00
}
2019-03-22 12:21:25 +03:00
type SendPaymentRequest struct {
2020-05-06 17:51:14 +03:00
// The identity pubkey of the payment recipient
2019-04-18 10:34:28 +03:00
Dest [ ] byte ` protobuf:"bytes,1,opt,name=dest,proto3" json:"dest,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-11-11 18:44:08 +03:00
//Number of satoshis to send.
//
//The fields amt and amt_msat are mutually exclusive.
2019-04-18 10:34:28 +03:00
Amt int64 ` protobuf:"varint,2,opt,name=amt,proto3" json:"amt,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-11-11 18:44:08 +03:00
//Number of millisatoshis to send.
//
//The fields amt and amt_msat are mutually exclusive.
AmtMsat int64 ` protobuf:"varint,12,opt,name=amt_msat,json=amtMsat,proto3" json:"amt_msat,omitempty" `
2020-05-06 17:51:14 +03:00
// The hash to use within the payment's HTLC
2019-04-18 10:34:28 +03:00
PaymentHash [ ] byte ` protobuf:"bytes,3,opt,name=payment_hash,json=paymentHash,proto3" json:"payment_hash,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-04-18 10:34:28 +03:00
//The CLTV delta from the current height that should be used to set the
//timelock for the final hop.
FinalCltvDelta int32 ` protobuf:"varint,4,opt,name=final_cltv_delta,json=finalCltvDelta,proto3" json:"final_cltv_delta,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-04-18 10:34:28 +03:00
//A bare-bones invoice for a payment within the Lightning Network. With the
//details of the invoice, the sender has all the data necessary to send a
//payment to the recipient. The amount in the payment request may be zero. In
//that case it is required to set the amt field as well. If no payment request
//is specified, the following fields are required: dest, amt and payment_hash.
PaymentRequest string ` protobuf:"bytes,5,opt,name=payment_request,json=paymentRequest,proto3" json:"payment_request,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//An upper limit on the amount of time we should spend when attempting to
//fulfill the payment. This is expressed in seconds. If we cannot make a
//successful payment within this time frame, an error will be returned.
2019-04-18 10:34:28 +03:00
//This field must be non-zero.
TimeoutSeconds int32 ` protobuf:"varint,6,opt,name=timeout_seconds,json=timeoutSeconds,proto3" json:"timeout_seconds,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-04-18 10:34:28 +03:00
//The maximum number of satoshis that will be paid as a fee of the payment.
//If this field is left to the default value of 0, only zero-fee routes will
//be considered. This usually means single hop routes connecting directly to
//the destination. To send the payment without a fee limit, use max int here.
2019-11-11 18:44:08 +03:00
//
//The fields fee_limit_sat and fee_limit_msat are mutually exclusive.
2019-04-18 10:34:28 +03:00
FeeLimitSat int64 ` protobuf:"varint,7,opt,name=fee_limit_sat,json=feeLimitSat,proto3" json:"fee_limit_sat,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-11-11 18:44:08 +03:00
//The maximum number of millisatoshis that will be paid as a fee of the
//payment. If this field is left to the default value of 0, only zero-fee
//routes will be considered. This usually means single hop routes connecting
//directly to the destination. To send the payment without a fee limit, use
//max int here.
//
//The fields fee_limit_sat and fee_limit_msat are mutually exclusive.
FeeLimitMsat int64 ` protobuf:"varint,13,opt,name=fee_limit_msat,json=feeLimitMsat,proto3" json:"fee_limit_msat,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-05-07 12:48:39 +03:00
//Deprecated, use outgoing_chan_ids. The channel id of the channel that must
//be taken to the first hop. If zero, any channel may be used (unless
//outgoing_chan_ids are set).
OutgoingChanId uint64 ` protobuf:"varint,8,opt,name=outgoing_chan_id,json=outgoingChanId,proto3" json:"outgoing_chan_id,omitempty" ` // Deprecated: Do not use.
//
//The channel ids of the channels are allowed for the first hop. If empty,
2019-05-15 16:07:30 +03:00
//any channel may be used.
2020-05-07 12:48:39 +03:00
OutgoingChanIds [ ] uint64 ` protobuf:"varint,19,rep,packed,name=outgoing_chan_ids,json=outgoingChanIds,proto3" json:"outgoing_chan_ids,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-11-18 14:08:42 +03:00
//The pubkey of the last hop of the route. If empty, any hop may be used.
LastHopPubkey [ ] byte ` protobuf:"bytes,14,opt,name=last_hop_pubkey,json=lastHopPubkey,proto3" json:"last_hop_pubkey,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-10-11 22:46:10 +03:00
//An optional maximum total time lock for the route. This should not exceed
//lnd's `--max-cltv-expiry` setting. If zero, then the value of
//`--max-cltv-expiry` is enforced.
2019-06-18 11:36:29 +03:00
CltvLimit int32 ` protobuf:"varint,9,opt,name=cltv_limit,json=cltvLimit,proto3" json:"cltv_limit,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-06-18 11:36:29 +03:00
//Optional route hints to reach the destination through private channels.
2020-02-11 15:58:45 +03:00
RouteHints [ ] * lnrpc . RouteHint ` protobuf:"bytes,10,rep,name=route_hints,json=routeHints,proto3" json:"route_hints,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-07-31 07:44:02 +03:00
//An optional field that can be used to pass an arbitrary set of TLV records
//to a peer which understands the new records. This can be used to pass
2019-11-20 14:00:25 +03:00
//application specific data during the payment attempt. Record types are
//required to be in the custom range >= 65536. When using REST, the values
//must be encoded as base64.
DestCustomRecords map [ uint64 ] [ ] byte ` protobuf:"bytes,11,rep,name=dest_custom_records,json=destCustomRecords,proto3" json:"dest_custom_records,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" `
2020-05-06 17:51:14 +03:00
// If set, circular payments to self are permitted.
2019-12-19 10:57:23 +03:00
AllowSelfPayment bool ` protobuf:"varint,15,opt,name=allow_self_payment,json=allowSelfPayment,proto3" json:"allow_self_payment,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-12-19 10:57:23 +03:00
//Features assumed to be supported by the final node. All transitive feature
2020-01-18 00:12:02 +03:00
//dependencies must also be set properly. For a given feature bit pair, either
2019-12-20 03:25:59 +03:00
//optional or remote may be set, but not both. If this field is nil or empty,
//the router will try to load destination features from the graph as a
//fallback.
2020-01-28 18:07:34 +03:00
DestFeatures [ ] lnrpc . FeatureBit ` protobuf:"varint,16,rep,packed,name=dest_features,json=destFeatures,proto3,enum=lnrpc.FeatureBit" json:"dest_features,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-01-28 18:07:34 +03:00
//The maximum number of partial payments that may be use to complete the full
//amount.
2020-04-22 10:19:11 +03:00
MaxParts uint32 ` protobuf:"varint,17,opt,name=max_parts,json=maxParts,proto3" json:"max_parts,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-04-20 09:06:35 +03:00
//If set, only the final payment update is streamed back. Intermediate updates
//that show which htlcs are still in flight are suppressed.
NoInflightUpdates bool ` protobuf:"varint,18,opt,name=no_inflight_updates,json=noInflightUpdates,proto3" json:"no_inflight_updates,omitempty" `
2020-01-28 18:07:34 +03:00
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) Reset ( ) { * m = SendPaymentRequest { } }
func ( m * SendPaymentRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * SendPaymentRequest ) ProtoMessage ( ) { }
func ( * SendPaymentRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2019-05-15 16:07:30 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 0 }
2018-10-23 07:43:47 +03:00
}
2019-05-15 16:07:30 +03:00
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_SendPaymentRequest . Unmarshal ( m , b )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_SendPaymentRequest . Marshal ( b , m , deterministic )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_SendPaymentRequest . Merge ( m , src )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) XXX_Size ( ) int {
return xxx_messageInfo_SendPaymentRequest . Size ( m )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_SendPaymentRequest . DiscardUnknown ( m )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
var xxx_messageInfo_SendPaymentRequest proto . InternalMessageInfo
2018-10-23 07:43:47 +03:00
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetDest ( ) [ ] byte {
2018-10-23 07:43:47 +03:00
if m != nil {
2019-04-18 10:34:28 +03:00
return m . Dest
2018-10-23 07:43:47 +03:00
}
2019-04-18 10:34:28 +03:00
return nil
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetAmt ( ) int64 {
2018-10-23 07:43:47 +03:00
if m != nil {
2019-04-18 10:34:28 +03:00
return m . Amt
2018-10-23 07:43:47 +03:00
}
return 0
}
2019-11-11 18:44:08 +03:00
func ( m * SendPaymentRequest ) GetAmtMsat ( ) int64 {
if m != nil {
return m . AmtMsat
}
return 0
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetPaymentHash ( ) [ ] byte {
2018-10-23 07:43:47 +03:00
if m != nil {
2019-04-18 10:34:28 +03:00
return m . PaymentHash
}
return nil
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetFinalCltvDelta ( ) int32 {
2019-04-18 10:34:28 +03:00
if m != nil {
return m . FinalCltvDelta
2018-10-23 07:43:47 +03:00
}
return 0
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetPaymentRequest ( ) string {
2019-04-18 10:34:28 +03:00
if m != nil {
return m . PaymentRequest
}
return ""
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetTimeoutSeconds ( ) int32 {
2018-10-23 07:43:47 +03:00
if m != nil {
return m . TimeoutSeconds
}
return 0
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetFeeLimitSat ( ) int64 {
2019-04-18 10:34:28 +03:00
if m != nil {
return m . FeeLimitSat
}
return 0
}
2019-11-11 18:44:08 +03:00
func ( m * SendPaymentRequest ) GetFeeLimitMsat ( ) int64 {
if m != nil {
return m . FeeLimitMsat
}
return 0
}
2020-05-07 12:48:39 +03:00
// Deprecated: Do not use.
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetOutgoingChanId ( ) uint64 {
2018-10-23 07:43:47 +03:00
if m != nil {
2019-04-18 10:34:28 +03:00
return m . OutgoingChanId
}
return 0
}
2020-05-07 12:48:39 +03:00
func ( m * SendPaymentRequest ) GetOutgoingChanIds ( ) [ ] uint64 {
if m != nil {
return m . OutgoingChanIds
}
return nil
}
2019-11-18 14:08:42 +03:00
func ( m * SendPaymentRequest ) GetLastHopPubkey ( ) [ ] byte {
if m != nil {
return m . LastHopPubkey
}
return nil
}
2019-03-22 12:21:25 +03:00
func ( m * SendPaymentRequest ) GetCltvLimit ( ) int32 {
2019-04-18 10:34:28 +03:00
if m != nil {
return m . CltvLimit
2018-10-23 07:43:47 +03:00
}
return 0
}
2019-06-18 11:36:29 +03:00
func ( m * SendPaymentRequest ) GetRouteHints ( ) [ ] * lnrpc . RouteHint {
if m != nil {
return m . RouteHints
}
return nil
}
2019-11-20 14:00:25 +03:00
func ( m * SendPaymentRequest ) GetDestCustomRecords ( ) map [ uint64 ] [ ] byte {
2019-07-31 07:44:02 +03:00
if m != nil {
2019-11-20 14:00:25 +03:00
return m . DestCustomRecords
2019-07-31 07:44:02 +03:00
}
return nil
}
2019-11-25 16:13:21 +03:00
func ( m * SendPaymentRequest ) GetAllowSelfPayment ( ) bool {
if m != nil {
return m . AllowSelfPayment
}
return false
}
2019-12-19 10:57:23 +03:00
func ( m * SendPaymentRequest ) GetDestFeatures ( ) [ ] lnrpc . FeatureBit {
if m != nil {
return m . DestFeatures
}
return nil
}
2020-04-22 10:19:11 +03:00
func ( m * SendPaymentRequest ) GetMaxParts ( ) uint32 {
2020-01-28 18:07:34 +03:00
if m != nil {
2020-04-22 10:19:11 +03:00
return m . MaxParts
2020-01-28 18:07:34 +03:00
}
return 0
}
2020-04-20 09:06:35 +03:00
func ( m * SendPaymentRequest ) GetNoInflightUpdates ( ) bool {
if m != nil {
return m . NoInflightUpdates
}
return false
}
2019-03-22 12:21:25 +03:00
type TrackPaymentRequest struct {
2020-05-06 17:51:14 +03:00
// The hash of the payment to look up.
2020-04-20 09:06:35 +03:00
PaymentHash [ ] byte ` protobuf:"bytes,1,opt,name=payment_hash,json=paymentHash,proto3" json:"payment_hash,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-04-20 09:06:35 +03:00
//If set, only the final payment update is streamed back. Intermediate updates
//that show which htlcs are still in flight are suppressed.
NoInflightUpdates bool ` protobuf:"varint,2,opt,name=no_inflight_updates,json=noInflightUpdates,proto3" json:"no_inflight_updates,omitempty" `
2018-10-23 07:43:47 +03:00
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) Reset ( ) { * m = TrackPaymentRequest { } }
func ( m * TrackPaymentRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * TrackPaymentRequest ) ProtoMessage ( ) { }
func ( * TrackPaymentRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2019-05-15 16:07:30 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 1 }
2018-10-23 07:43:47 +03:00
}
2019-05-15 16:07:30 +03:00
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_TrackPaymentRequest . Unmarshal ( m , b )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_TrackPaymentRequest . Marshal ( b , m , deterministic )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_TrackPaymentRequest . Merge ( m , src )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) XXX_Size ( ) int {
return xxx_messageInfo_TrackPaymentRequest . Size ( m )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_TrackPaymentRequest . DiscardUnknown ( m )
2018-10-23 07:43:47 +03:00
}
2019-03-22 12:21:25 +03:00
var xxx_messageInfo_TrackPaymentRequest proto . InternalMessageInfo
2018-10-23 07:43:47 +03:00
2019-03-22 12:21:25 +03:00
func ( m * TrackPaymentRequest ) GetPaymentHash ( ) [ ] byte {
2018-10-23 07:43:47 +03:00
if m != nil {
2019-03-22 12:21:25 +03:00
return m . PaymentHash
2018-10-23 07:43:47 +03:00
}
return nil
}
2020-04-20 09:06:35 +03:00
func ( m * TrackPaymentRequest ) GetNoInflightUpdates ( ) bool {
if m != nil {
return m . NoInflightUpdates
}
return false
}
2018-10-23 07:43:47 +03:00
type RouteFeeRequest struct {
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//The destination once wishes to obtain a routing fee quote to.
2018-10-23 07:43:47 +03:00
Dest [ ] byte ` protobuf:"bytes,1,opt,name=dest,proto3" json:"dest,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//The amount one wishes to send to the target destination.
2018-10-23 07:43:47 +03:00
AmtSat int64 ` protobuf:"varint,2,opt,name=amt_sat,json=amtSat,proto3" json:"amt_sat,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * RouteFeeRequest ) Reset ( ) { * m = RouteFeeRequest { } }
func ( m * RouteFeeRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * RouteFeeRequest ) ProtoMessage ( ) { }
func ( * RouteFeeRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 2 }
2018-10-23 07:43:47 +03:00
}
2019-05-15 16:07:30 +03:00
2018-10-23 07:43:47 +03:00
func ( m * RouteFeeRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_RouteFeeRequest . Unmarshal ( m , b )
}
func ( m * RouteFeeRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_RouteFeeRequest . Marshal ( b , m , deterministic )
}
2019-05-15 16:07:30 +03:00
func ( m * RouteFeeRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_RouteFeeRequest . Merge ( m , src )
2018-10-23 07:43:47 +03:00
}
func ( m * RouteFeeRequest ) XXX_Size ( ) int {
return xxx_messageInfo_RouteFeeRequest . Size ( m )
}
func ( m * RouteFeeRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_RouteFeeRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_RouteFeeRequest proto . InternalMessageInfo
func ( m * RouteFeeRequest ) GetDest ( ) [ ] byte {
if m != nil {
return m . Dest
}
return nil
}
func ( m * RouteFeeRequest ) GetAmtSat ( ) int64 {
if m != nil {
return m . AmtSat
}
return 0
}
type RouteFeeResponse struct {
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//A lower bound of the estimated fee to the target destination within the
//network, expressed in milli-satoshis.
2018-10-23 07:43:47 +03:00
RoutingFeeMsat int64 ` protobuf:"varint,1,opt,name=routing_fee_msat,json=routingFeeMsat,proto3" json:"routing_fee_msat,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//An estimate of the worst case time delay that can occur. Note that callers
//will still need to factor in the final CLTV delta of the last hop into this
//value.
2018-10-23 07:43:47 +03:00
TimeLockDelay int64 ` protobuf:"varint,2,opt,name=time_lock_delay,json=timeLockDelay,proto3" json:"time_lock_delay,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * RouteFeeResponse ) Reset ( ) { * m = RouteFeeResponse { } }
func ( m * RouteFeeResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * RouteFeeResponse ) ProtoMessage ( ) { }
func ( * RouteFeeResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 3 }
2018-10-23 07:43:47 +03:00
}
2019-05-15 16:07:30 +03:00
2018-10-23 07:43:47 +03:00
func ( m * RouteFeeResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_RouteFeeResponse . Unmarshal ( m , b )
}
func ( m * RouteFeeResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_RouteFeeResponse . Marshal ( b , m , deterministic )
}
2019-05-15 16:07:30 +03:00
func ( m * RouteFeeResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_RouteFeeResponse . Merge ( m , src )
2018-10-23 07:43:47 +03:00
}
func ( m * RouteFeeResponse ) XXX_Size ( ) int {
return xxx_messageInfo_RouteFeeResponse . Size ( m )
}
func ( m * RouteFeeResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_RouteFeeResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_RouteFeeResponse proto . InternalMessageInfo
func ( m * RouteFeeResponse ) GetRoutingFeeMsat ( ) int64 {
if m != nil {
return m . RoutingFeeMsat
}
return 0
}
func ( m * RouteFeeResponse ) GetTimeLockDelay ( ) int64 {
if m != nil {
return m . TimeLockDelay
}
return 0
}
2019-03-14 18:31:39 +03:00
type SendToRouteRequest struct {
2020-05-06 17:51:14 +03:00
// The payment hash to use for the HTLC.
2019-03-14 18:31:39 +03:00
PaymentHash [ ] byte ` protobuf:"bytes,1,opt,name=payment_hash,json=paymentHash,proto3" json:"payment_hash,omitempty" `
2020-05-06 17:51:14 +03:00
// Route that should be used to attempt to complete the payment.
2019-03-14 18:31:39 +03:00
Route * lnrpc . Route ` protobuf:"bytes,2,opt,name=route,proto3" json:"route,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * SendToRouteRequest ) Reset ( ) { * m = SendToRouteRequest { } }
func ( m * SendToRouteRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * SendToRouteRequest ) ProtoMessage ( ) { }
func ( * SendToRouteRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 4 }
2019-03-14 18:31:39 +03:00
}
2019-05-15 16:07:30 +03:00
2019-03-14 18:31:39 +03:00
func ( m * SendToRouteRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_SendToRouteRequest . Unmarshal ( m , b )
}
func ( m * SendToRouteRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_SendToRouteRequest . Marshal ( b , m , deterministic )
}
2019-05-15 16:07:30 +03:00
func ( m * SendToRouteRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_SendToRouteRequest . Merge ( m , src )
2019-03-14 18:31:39 +03:00
}
func ( m * SendToRouteRequest ) XXX_Size ( ) int {
return xxx_messageInfo_SendToRouteRequest . Size ( m )
}
func ( m * SendToRouteRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_SendToRouteRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_SendToRouteRequest proto . InternalMessageInfo
func ( m * SendToRouteRequest ) GetPaymentHash ( ) [ ] byte {
if m != nil {
return m . PaymentHash
}
return nil
}
func ( m * SendToRouteRequest ) GetRoute ( ) * lnrpc . Route {
if m != nil {
return m . Route
}
return nil
}
type SendToRouteResponse struct {
2020-05-06 17:51:14 +03:00
// The preimage obtained by making the payment.
2019-03-14 18:31:39 +03:00
Preimage [ ] byte ` protobuf:"bytes,1,opt,name=preimage,proto3" json:"preimage,omitempty" `
2020-05-06 17:51:14 +03:00
// The failure message in case the payment failed.
2020-02-13 13:40:51 +03:00
Failure * lnrpc . Failure ` protobuf:"bytes,2,opt,name=failure,proto3" json:"failure,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
2019-03-14 18:31:39 +03:00
}
func ( m * SendToRouteResponse ) Reset ( ) { * m = SendToRouteResponse { } }
func ( m * SendToRouteResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * SendToRouteResponse ) ProtoMessage ( ) { }
func ( * SendToRouteResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 5 }
2019-03-14 18:31:39 +03:00
}
2019-05-15 16:07:30 +03:00
2019-03-14 18:31:39 +03:00
func ( m * SendToRouteResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_SendToRouteResponse . Unmarshal ( m , b )
}
func ( m * SendToRouteResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_SendToRouteResponse . Marshal ( b , m , deterministic )
}
2019-05-15 16:07:30 +03:00
func ( m * SendToRouteResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_SendToRouteResponse . Merge ( m , src )
2019-03-14 18:31:39 +03:00
}
func ( m * SendToRouteResponse ) XXX_Size ( ) int {
return xxx_messageInfo_SendToRouteResponse . Size ( m )
}
func ( m * SendToRouteResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_SendToRouteResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_SendToRouteResponse proto . InternalMessageInfo
func ( m * SendToRouteResponse ) GetPreimage ( ) [ ] byte {
if m != nil {
return m . Preimage
}
return nil
}
2020-02-13 13:40:51 +03:00
func ( m * SendToRouteResponse ) GetFailure ( ) * lnrpc . Failure {
2019-03-14 18:31:39 +03:00
if m != nil {
return m . Failure
}
return nil
}
2019-05-10 19:00:15 +03:00
type ResetMissionControlRequest struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * ResetMissionControlRequest ) Reset ( ) { * m = ResetMissionControlRequest { } }
func ( m * ResetMissionControlRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * ResetMissionControlRequest ) ProtoMessage ( ) { }
func ( * ResetMissionControlRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 6 }
2019-05-10 19:00:15 +03:00
}
func ( m * ResetMissionControlRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_ResetMissionControlRequest . Unmarshal ( m , b )
}
func ( m * ResetMissionControlRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_ResetMissionControlRequest . Marshal ( b , m , deterministic )
}
func ( m * ResetMissionControlRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_ResetMissionControlRequest . Merge ( m , src )
}
func ( m * ResetMissionControlRequest ) XXX_Size ( ) int {
return xxx_messageInfo_ResetMissionControlRequest . Size ( m )
}
func ( m * ResetMissionControlRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_ResetMissionControlRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_ResetMissionControlRequest proto . InternalMessageInfo
type ResetMissionControlResponse struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * ResetMissionControlResponse ) Reset ( ) { * m = ResetMissionControlResponse { } }
func ( m * ResetMissionControlResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * ResetMissionControlResponse ) ProtoMessage ( ) { }
func ( * ResetMissionControlResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 7 }
2019-05-10 19:00:15 +03:00
}
func ( m * ResetMissionControlResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_ResetMissionControlResponse . Unmarshal ( m , b )
}
func ( m * ResetMissionControlResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_ResetMissionControlResponse . Marshal ( b , m , deterministic )
}
func ( m * ResetMissionControlResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_ResetMissionControlResponse . Merge ( m , src )
}
func ( m * ResetMissionControlResponse ) XXX_Size ( ) int {
return xxx_messageInfo_ResetMissionControlResponse . Size ( m )
}
func ( m * ResetMissionControlResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_ResetMissionControlResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_ResetMissionControlResponse proto . InternalMessageInfo
2019-05-10 11:38:31 +03:00
type QueryMissionControlRequest struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * QueryMissionControlRequest ) Reset ( ) { * m = QueryMissionControlRequest { } }
func ( m * QueryMissionControlRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * QueryMissionControlRequest ) ProtoMessage ( ) { }
func ( * QueryMissionControlRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 8 }
2019-05-10 11:38:31 +03:00
}
func ( m * QueryMissionControlRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_QueryMissionControlRequest . Unmarshal ( m , b )
}
func ( m * QueryMissionControlRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_QueryMissionControlRequest . Marshal ( b , m , deterministic )
}
func ( m * QueryMissionControlRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_QueryMissionControlRequest . Merge ( m , src )
}
func ( m * QueryMissionControlRequest ) XXX_Size ( ) int {
return xxx_messageInfo_QueryMissionControlRequest . Size ( m )
}
func ( m * QueryMissionControlRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_QueryMissionControlRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_QueryMissionControlRequest proto . InternalMessageInfo
2020-05-06 17:51:14 +03:00
// QueryMissionControlResponse contains mission control state.
2019-05-10 11:38:31 +03:00
type QueryMissionControlResponse struct {
2020-05-06 17:51:14 +03:00
// Node pair-level mission control state.
2019-07-29 16:10:58 +03:00
Pairs [ ] * PairHistory ` protobuf:"bytes,2,rep,name=pairs,proto3" json:"pairs,omitempty" `
2019-05-10 11:38:31 +03:00
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * QueryMissionControlResponse ) Reset ( ) { * m = QueryMissionControlResponse { } }
func ( m * QueryMissionControlResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * QueryMissionControlResponse ) ProtoMessage ( ) { }
func ( * QueryMissionControlResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 9 }
2019-05-10 11:38:31 +03:00
}
func ( m * QueryMissionControlResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_QueryMissionControlResponse . Unmarshal ( m , b )
}
func ( m * QueryMissionControlResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_QueryMissionControlResponse . Marshal ( b , m , deterministic )
}
func ( m * QueryMissionControlResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_QueryMissionControlResponse . Merge ( m , src )
}
func ( m * QueryMissionControlResponse ) XXX_Size ( ) int {
return xxx_messageInfo_QueryMissionControlResponse . Size ( m )
}
func ( m * QueryMissionControlResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_QueryMissionControlResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_QueryMissionControlResponse proto . InternalMessageInfo
2019-07-29 16:10:58 +03:00
func ( m * QueryMissionControlResponse ) GetPairs ( ) [ ] * PairHistory {
if m != nil {
return m . Pairs
}
return nil
}
2020-05-06 17:51:14 +03:00
// PairHistory contains the mission control state for a particular node pair.
2019-07-29 16:10:58 +03:00
type PairHistory struct {
2020-05-06 17:51:14 +03:00
// The source node pubkey of the pair.
2020-02-11 15:58:45 +03:00
NodeFrom [ ] byte ` protobuf:"bytes,1,opt,name=node_from,json=nodeFrom,proto3" json:"node_from,omitempty" `
2020-05-06 17:51:14 +03:00
// The destination node pubkey of the pair.
2020-02-11 15:58:45 +03:00
NodeTo [ ] byte ` protobuf:"bytes,2,opt,name=node_to,json=nodeTo,proto3" json:"node_to,omitempty" `
2019-09-30 10:12:50 +03:00
History * PairData ` protobuf:"bytes,7,opt,name=history,proto3" json:"history,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) Reset ( ) { * m = PairHistory { } }
func ( m * PairHistory ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * PairHistory ) ProtoMessage ( ) { }
func ( * PairHistory ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 10 }
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_PairHistory . Unmarshal ( m , b )
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_PairHistory . Marshal ( b , m , deterministic )
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_PairHistory . Merge ( m , src )
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) XXX_Size ( ) int {
return xxx_messageInfo_PairHistory . Size ( m )
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_PairHistory . DiscardUnknown ( m )
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
var xxx_messageInfo_PairHistory proto . InternalMessageInfo
2019-05-10 11:38:31 +03:00
2019-07-29 16:10:58 +03:00
func ( m * PairHistory ) GetNodeFrom ( ) [ ] byte {
2019-05-10 11:38:31 +03:00
if m != nil {
2019-07-29 16:10:58 +03:00
return m . NodeFrom
2019-05-10 11:38:31 +03:00
}
2019-07-29 16:10:58 +03:00
return nil
}
func ( m * PairHistory ) GetNodeTo ( ) [ ] byte {
if m != nil {
return m . NodeTo
}
return nil
2019-05-10 11:38:31 +03:00
}
2019-09-30 10:12:50 +03:00
func ( m * PairHistory ) GetHistory ( ) * PairData {
if m != nil {
return m . History
}
return nil
}
type PairData struct {
2020-05-06 17:51:14 +03:00
// Time of last failure.
2020-02-11 15:58:45 +03:00
FailTime int64 ` protobuf:"varint,1,opt,name=fail_time,json=failTime,proto3" json:"fail_time,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-09-26 18:04:02 +03:00
//Lowest amount that failed to forward rounded to whole sats. This may be
//set to zero if the failure is independent of amount.
2020-02-11 15:58:45 +03:00
FailAmtSat int64 ` protobuf:"varint,2,opt,name=fail_amt_sat,json=failAmtSat,proto3" json:"fail_amt_sat,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-09-26 18:04:02 +03:00
//Lowest amount that failed to forward in millisats. This may be
//set to zero if the failure is independent of amount.
2020-02-11 15:58:45 +03:00
FailAmtMsat int64 ` protobuf:"varint,4,opt,name=fail_amt_msat,json=failAmtMsat,proto3" json:"fail_amt_msat,omitempty" `
2020-05-06 17:51:14 +03:00
// Time of last success.
2020-02-11 15:58:45 +03:00
SuccessTime int64 ` protobuf:"varint,5,opt,name=success_time,json=successTime,proto3" json:"success_time,omitempty" `
2020-05-06 17:51:14 +03:00
// Highest amount that we could successfully forward rounded to whole sats.
2020-02-11 15:58:45 +03:00
SuccessAmtSat int64 ` protobuf:"varint,6,opt,name=success_amt_sat,json=successAmtSat,proto3" json:"success_amt_sat,omitempty" `
2020-05-06 17:51:14 +03:00
// Highest amount that we could successfully forward in millisats.
2020-02-11 15:58:45 +03:00
SuccessAmtMsat int64 ` protobuf:"varint,7,opt,name=success_amt_msat,json=successAmtMsat,proto3" json:"success_amt_msat,omitempty" `
2019-09-26 18:04:02 +03:00
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
2019-09-30 10:12:50 +03:00
}
func ( m * PairData ) Reset ( ) { * m = PairData { } }
func ( m * PairData ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * PairData ) ProtoMessage ( ) { }
func ( * PairData ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 11 }
2019-09-30 10:12:50 +03:00
}
func ( m * PairData ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_PairData . Unmarshal ( m , b )
}
func ( m * PairData ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_PairData . Marshal ( b , m , deterministic )
}
func ( m * PairData ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_PairData . Merge ( m , src )
}
func ( m * PairData ) XXX_Size ( ) int {
return xxx_messageInfo_PairData . Size ( m )
}
func ( m * PairData ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_PairData . DiscardUnknown ( m )
}
var xxx_messageInfo_PairData proto . InternalMessageInfo
2019-09-26 18:04:02 +03:00
func ( m * PairData ) GetFailTime ( ) int64 {
2019-05-10 11:38:31 +03:00
if m != nil {
2019-09-26 18:04:02 +03:00
return m . FailTime
2019-05-10 11:38:31 +03:00
}
return 0
}
2019-09-26 18:04:02 +03:00
func ( m * PairData ) GetFailAmtSat ( ) int64 {
2019-05-10 11:38:31 +03:00
if m != nil {
2019-09-26 18:04:02 +03:00
return m . FailAmtSat
2019-09-26 17:33:08 +03:00
}
return 0
}
2019-09-26 18:04:02 +03:00
func ( m * PairData ) GetFailAmtMsat ( ) int64 {
2019-09-26 17:33:08 +03:00
if m != nil {
2019-09-26 18:04:02 +03:00
return m . FailAmtMsat
2019-05-10 11:38:31 +03:00
}
return 0
}
2019-09-26 18:04:02 +03:00
func ( m * PairData ) GetSuccessTime ( ) int64 {
2019-07-29 15:20:06 +03:00
if m != nil {
2019-09-26 18:04:02 +03:00
return m . SuccessTime
2019-07-29 15:20:06 +03:00
}
2019-09-26 18:04:02 +03:00
return 0
}
func ( m * PairData ) GetSuccessAmtSat ( ) int64 {
if m != nil {
return m . SuccessAmtSat
}
return 0
}
func ( m * PairData ) GetSuccessAmtMsat ( ) int64 {
if m != nil {
return m . SuccessAmtMsat
}
return 0
2019-07-29 15:20:06 +03:00
}
2019-09-27 12:43:12 +03:00
type QueryProbabilityRequest struct {
2020-05-06 17:51:14 +03:00
// The source node pubkey of the pair.
2020-02-11 15:58:45 +03:00
FromNode [ ] byte ` protobuf:"bytes,1,opt,name=from_node,json=fromNode,proto3" json:"from_node,omitempty" `
2020-05-06 17:51:14 +03:00
// The destination node pubkey of the pair.
2020-02-11 15:58:45 +03:00
ToNode [ ] byte ` protobuf:"bytes,2,opt,name=to_node,json=toNode,proto3" json:"to_node,omitempty" `
2020-05-06 17:51:14 +03:00
// The amount for which to calculate a probability.
2020-02-11 15:58:45 +03:00
AmtMsat int64 ` protobuf:"varint,3,opt,name=amt_msat,json=amtMsat,proto3" json:"amt_msat,omitempty" `
2019-09-27 12:43:12 +03:00
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * QueryProbabilityRequest ) Reset ( ) { * m = QueryProbabilityRequest { } }
func ( m * QueryProbabilityRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * QueryProbabilityRequest ) ProtoMessage ( ) { }
func ( * QueryProbabilityRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 12 }
2019-09-27 12:43:12 +03:00
}
func ( m * QueryProbabilityRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_QueryProbabilityRequest . Unmarshal ( m , b )
}
func ( m * QueryProbabilityRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_QueryProbabilityRequest . Marshal ( b , m , deterministic )
}
func ( m * QueryProbabilityRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_QueryProbabilityRequest . Merge ( m , src )
}
func ( m * QueryProbabilityRequest ) XXX_Size ( ) int {
return xxx_messageInfo_QueryProbabilityRequest . Size ( m )
}
func ( m * QueryProbabilityRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_QueryProbabilityRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_QueryProbabilityRequest proto . InternalMessageInfo
func ( m * QueryProbabilityRequest ) GetFromNode ( ) [ ] byte {
if m != nil {
return m . FromNode
}
return nil
}
func ( m * QueryProbabilityRequest ) GetToNode ( ) [ ] byte {
if m != nil {
return m . ToNode
}
return nil
}
func ( m * QueryProbabilityRequest ) GetAmtMsat ( ) int64 {
if m != nil {
return m . AmtMsat
}
return 0
}
type QueryProbabilityResponse struct {
2020-05-06 17:51:14 +03:00
// The success probability for the requested pair.
2019-09-27 12:43:12 +03:00
Probability float64 ` protobuf:"fixed64,1,opt,name=probability,proto3" json:"probability,omitempty" `
2020-05-06 17:51:14 +03:00
// The historical data for the requested pair.
2019-09-27 12:43:12 +03:00
History * PairData ` protobuf:"bytes,2,opt,name=history,proto3" json:"history,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * QueryProbabilityResponse ) Reset ( ) { * m = QueryProbabilityResponse { } }
func ( m * QueryProbabilityResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * QueryProbabilityResponse ) ProtoMessage ( ) { }
func ( * QueryProbabilityResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 13 }
2019-09-27 12:43:12 +03:00
}
func ( m * QueryProbabilityResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_QueryProbabilityResponse . Unmarshal ( m , b )
}
func ( m * QueryProbabilityResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_QueryProbabilityResponse . Marshal ( b , m , deterministic )
}
func ( m * QueryProbabilityResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_QueryProbabilityResponse . Merge ( m , src )
}
func ( m * QueryProbabilityResponse ) XXX_Size ( ) int {
return xxx_messageInfo_QueryProbabilityResponse . Size ( m )
}
func ( m * QueryProbabilityResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_QueryProbabilityResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_QueryProbabilityResponse proto . InternalMessageInfo
func ( m * QueryProbabilityResponse ) GetProbability ( ) float64 {
if m != nil {
return m . Probability
}
return 0
}
func ( m * QueryProbabilityResponse ) GetHistory ( ) * PairData {
if m != nil {
return m . History
}
return nil
}
2019-08-29 14:03:37 +03:00
type BuildRouteRequest struct {
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//The amount to send expressed in msat. If set to zero, the minimum routable
//amount is used.
AmtMsat int64 ` protobuf:"varint,1,opt,name=amt_msat,json=amtMsat,proto3" json:"amt_msat,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//CLTV delta from the current height that should be used for the timelock
//of the final hop
FinalCltvDelta int32 ` protobuf:"varint,2,opt,name=final_cltv_delta,json=finalCltvDelta,proto3" json:"final_cltv_delta,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//The channel id of the channel that must be taken to the first hop. If zero,
//any channel may be used.
OutgoingChanId uint64 ` protobuf:"varint,3,opt,name=outgoing_chan_id,json=outgoingChanId,proto3" json:"outgoing_chan_id,omitempty" `
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//A list of hops that defines the route. This does not include the source hop
//pubkey.
HopPubkeys [ ] [ ] byte ` protobuf:"bytes,4,rep,name=hop_pubkeys,json=hopPubkeys,proto3" json:"hop_pubkeys,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * BuildRouteRequest ) Reset ( ) { * m = BuildRouteRequest { } }
func ( m * BuildRouteRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * BuildRouteRequest ) ProtoMessage ( ) { }
func ( * BuildRouteRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 14 }
2019-08-29 14:03:37 +03:00
}
func ( m * BuildRouteRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_BuildRouteRequest . Unmarshal ( m , b )
}
func ( m * BuildRouteRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_BuildRouteRequest . Marshal ( b , m , deterministic )
}
func ( m * BuildRouteRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_BuildRouteRequest . Merge ( m , src )
}
func ( m * BuildRouteRequest ) XXX_Size ( ) int {
return xxx_messageInfo_BuildRouteRequest . Size ( m )
}
func ( m * BuildRouteRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_BuildRouteRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_BuildRouteRequest proto . InternalMessageInfo
func ( m * BuildRouteRequest ) GetAmtMsat ( ) int64 {
if m != nil {
return m . AmtMsat
}
return 0
}
func ( m * BuildRouteRequest ) GetFinalCltvDelta ( ) int32 {
if m != nil {
return m . FinalCltvDelta
}
return 0
}
func ( m * BuildRouteRequest ) GetOutgoingChanId ( ) uint64 {
if m != nil {
return m . OutgoingChanId
}
return 0
}
func ( m * BuildRouteRequest ) GetHopPubkeys ( ) [ ] [ ] byte {
if m != nil {
return m . HopPubkeys
}
return nil
}
type BuildRouteResponse struct {
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//Fully specified route that can be used to execute the payment.
Route * lnrpc . Route ` protobuf:"bytes,1,opt,name=route,proto3" json:"route,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * BuildRouteResponse ) Reset ( ) { * m = BuildRouteResponse { } }
func ( m * BuildRouteResponse ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * BuildRouteResponse ) ProtoMessage ( ) { }
func ( * BuildRouteResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 15 }
2019-08-29 14:03:37 +03:00
}
func ( m * BuildRouteResponse ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_BuildRouteResponse . Unmarshal ( m , b )
}
func ( m * BuildRouteResponse ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_BuildRouteResponse . Marshal ( b , m , deterministic )
}
func ( m * BuildRouteResponse ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_BuildRouteResponse . Merge ( m , src )
}
func ( m * BuildRouteResponse ) XXX_Size ( ) int {
return xxx_messageInfo_BuildRouteResponse . Size ( m )
}
func ( m * BuildRouteResponse ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_BuildRouteResponse . DiscardUnknown ( m )
}
var xxx_messageInfo_BuildRouteResponse proto . InternalMessageInfo
func ( m * BuildRouteResponse ) GetRoute ( ) * lnrpc . Route {
if m != nil {
return m . Route
}
return nil
}
2020-03-13 10:30:16 +03:00
type SubscribeHtlcEventsRequest struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * SubscribeHtlcEventsRequest ) Reset ( ) { * m = SubscribeHtlcEventsRequest { } }
func ( m * SubscribeHtlcEventsRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * SubscribeHtlcEventsRequest ) ProtoMessage ( ) { }
func ( * SubscribeHtlcEventsRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 16 }
2020-03-13 10:30:16 +03:00
}
func ( m * SubscribeHtlcEventsRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_SubscribeHtlcEventsRequest . Unmarshal ( m , b )
}
func ( m * SubscribeHtlcEventsRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_SubscribeHtlcEventsRequest . Marshal ( b , m , deterministic )
}
func ( m * SubscribeHtlcEventsRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_SubscribeHtlcEventsRequest . Merge ( m , src )
}
func ( m * SubscribeHtlcEventsRequest ) XXX_Size ( ) int {
return xxx_messageInfo_SubscribeHtlcEventsRequest . Size ( m )
}
func ( m * SubscribeHtlcEventsRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_SubscribeHtlcEventsRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_SubscribeHtlcEventsRequest proto . InternalMessageInfo
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//HtlcEvent contains the htlc event that was processed. These are served on a
//best-effort basis; events are not persisted, delivery is not guaranteed
//(in the event of a crash in the switch, forward events may be lost) and
//some events may be replayed upon restart. Events consumed from this package
//should be de-duplicated by the htlc's unique combination of incoming and
//outgoing channel id and htlc id. [EXPERIMENTAL]
type HtlcEvent struct {
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//The short channel id that the incoming htlc arrived at our node on. This
//value is zero for sends.
IncomingChannelId uint64 ` protobuf:"varint,1,opt,name=incoming_channel_id,json=incomingChannelId,proto3" json:"incoming_channel_id,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//The short channel id that the outgoing htlc left our node on. This value
//is zero for receives.
OutgoingChannelId uint64 ` protobuf:"varint,2,opt,name=outgoing_channel_id,json=outgoingChannelId,proto3" json:"outgoing_channel_id,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//Incoming id is the index of the incoming htlc in the incoming channel.
//This value is zero for sends.
IncomingHtlcId uint64 ` protobuf:"varint,3,opt,name=incoming_htlc_id,json=incomingHtlcId,proto3" json:"incoming_htlc_id,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//Outgoing id is the index of the outgoing htlc in the outgoing channel.
//This value is zero for receives.
OutgoingHtlcId uint64 ` protobuf:"varint,4,opt,name=outgoing_htlc_id,json=outgoingHtlcId,proto3" json:"outgoing_htlc_id,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//The time in unix nanoseconds that the event occurred.
TimestampNs uint64 ` protobuf:"varint,5,opt,name=timestamp_ns,json=timestampNs,proto3" json:"timestamp_ns,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//The event type indicates whether the htlc was part of a send, receive or
//forward.
EventType HtlcEvent_EventType ` protobuf:"varint,6,opt,name=event_type,json=eventType,proto3,enum=routerrpc.HtlcEvent_EventType" json:"event_type,omitempty" `
// Types that are valid to be assigned to Event:
// *HtlcEvent_ForwardEvent
// *HtlcEvent_ForwardFailEvent
// *HtlcEvent_SettleEvent
// *HtlcEvent_LinkFailEvent
Event isHtlcEvent_Event ` protobuf_oneof:"event" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * HtlcEvent ) Reset ( ) { * m = HtlcEvent { } }
func ( m * HtlcEvent ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * HtlcEvent ) ProtoMessage ( ) { }
func ( * HtlcEvent ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 17 }
2020-03-13 10:30:16 +03:00
}
func ( m * HtlcEvent ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_HtlcEvent . Unmarshal ( m , b )
}
func ( m * HtlcEvent ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_HtlcEvent . Marshal ( b , m , deterministic )
}
func ( m * HtlcEvent ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_HtlcEvent . Merge ( m , src )
}
func ( m * HtlcEvent ) XXX_Size ( ) int {
return xxx_messageInfo_HtlcEvent . Size ( m )
}
func ( m * HtlcEvent ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_HtlcEvent . DiscardUnknown ( m )
}
var xxx_messageInfo_HtlcEvent proto . InternalMessageInfo
func ( m * HtlcEvent ) GetIncomingChannelId ( ) uint64 {
if m != nil {
return m . IncomingChannelId
}
return 0
}
func ( m * HtlcEvent ) GetOutgoingChannelId ( ) uint64 {
if m != nil {
return m . OutgoingChannelId
}
return 0
}
func ( m * HtlcEvent ) GetIncomingHtlcId ( ) uint64 {
if m != nil {
return m . IncomingHtlcId
}
return 0
}
func ( m * HtlcEvent ) GetOutgoingHtlcId ( ) uint64 {
if m != nil {
return m . OutgoingHtlcId
}
return 0
}
func ( m * HtlcEvent ) GetTimestampNs ( ) uint64 {
if m != nil {
return m . TimestampNs
}
return 0
}
func ( m * HtlcEvent ) GetEventType ( ) HtlcEvent_EventType {
if m != nil {
return m . EventType
}
return HtlcEvent_UNKNOWN
}
type isHtlcEvent_Event interface {
isHtlcEvent_Event ( )
}
type HtlcEvent_ForwardEvent struct {
ForwardEvent * ForwardEvent ` protobuf:"bytes,7,opt,name=forward_event,json=forwardEvent,proto3,oneof" `
}
type HtlcEvent_ForwardFailEvent struct {
ForwardFailEvent * ForwardFailEvent ` protobuf:"bytes,8,opt,name=forward_fail_event,json=forwardFailEvent,proto3,oneof" `
}
type HtlcEvent_SettleEvent struct {
SettleEvent * SettleEvent ` protobuf:"bytes,9,opt,name=settle_event,json=settleEvent,proto3,oneof" `
}
type HtlcEvent_LinkFailEvent struct {
LinkFailEvent * LinkFailEvent ` protobuf:"bytes,10,opt,name=link_fail_event,json=linkFailEvent,proto3,oneof" `
}
func ( * HtlcEvent_ForwardEvent ) isHtlcEvent_Event ( ) { }
func ( * HtlcEvent_ForwardFailEvent ) isHtlcEvent_Event ( ) { }
func ( * HtlcEvent_SettleEvent ) isHtlcEvent_Event ( ) { }
func ( * HtlcEvent_LinkFailEvent ) isHtlcEvent_Event ( ) { }
func ( m * HtlcEvent ) GetEvent ( ) isHtlcEvent_Event {
if m != nil {
return m . Event
}
return nil
}
func ( m * HtlcEvent ) GetForwardEvent ( ) * ForwardEvent {
if x , ok := m . GetEvent ( ) . ( * HtlcEvent_ForwardEvent ) ; ok {
return x . ForwardEvent
}
return nil
}
func ( m * HtlcEvent ) GetForwardFailEvent ( ) * ForwardFailEvent {
if x , ok := m . GetEvent ( ) . ( * HtlcEvent_ForwardFailEvent ) ; ok {
return x . ForwardFailEvent
}
return nil
}
func ( m * HtlcEvent ) GetSettleEvent ( ) * SettleEvent {
if x , ok := m . GetEvent ( ) . ( * HtlcEvent_SettleEvent ) ; ok {
return x . SettleEvent
}
return nil
}
func ( m * HtlcEvent ) GetLinkFailEvent ( ) * LinkFailEvent {
if x , ok := m . GetEvent ( ) . ( * HtlcEvent_LinkFailEvent ) ; ok {
return x . LinkFailEvent
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func ( * HtlcEvent ) XXX_OneofWrappers ( ) [ ] interface { } {
return [ ] interface { } {
( * HtlcEvent_ForwardEvent ) ( nil ) ,
( * HtlcEvent_ForwardFailEvent ) ( nil ) ,
( * HtlcEvent_SettleEvent ) ( nil ) ,
( * HtlcEvent_LinkFailEvent ) ( nil ) ,
}
}
type HtlcInfo struct {
// The timelock on the incoming htlc.
IncomingTimelock uint32 ` protobuf:"varint,1,opt,name=incoming_timelock,json=incomingTimelock,proto3" json:"incoming_timelock,omitempty" `
// The timelock on the outgoing htlc.
OutgoingTimelock uint32 ` protobuf:"varint,2,opt,name=outgoing_timelock,json=outgoingTimelock,proto3" json:"outgoing_timelock,omitempty" `
// The amount of the incoming htlc.
IncomingAmtMsat uint64 ` protobuf:"varint,3,opt,name=incoming_amt_msat,json=incomingAmtMsat,proto3" json:"incoming_amt_msat,omitempty" `
// The amount of the outgoing htlc.
OutgoingAmtMsat uint64 ` protobuf:"varint,4,opt,name=outgoing_amt_msat,json=outgoingAmtMsat,proto3" json:"outgoing_amt_msat,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * HtlcInfo ) Reset ( ) { * m = HtlcInfo { } }
func ( m * HtlcInfo ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * HtlcInfo ) ProtoMessage ( ) { }
func ( * HtlcInfo ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 18 }
2020-03-13 10:30:16 +03:00
}
func ( m * HtlcInfo ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_HtlcInfo . Unmarshal ( m , b )
}
func ( m * HtlcInfo ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_HtlcInfo . Marshal ( b , m , deterministic )
}
func ( m * HtlcInfo ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_HtlcInfo . Merge ( m , src )
}
func ( m * HtlcInfo ) XXX_Size ( ) int {
return xxx_messageInfo_HtlcInfo . Size ( m )
}
func ( m * HtlcInfo ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_HtlcInfo . DiscardUnknown ( m )
}
var xxx_messageInfo_HtlcInfo proto . InternalMessageInfo
func ( m * HtlcInfo ) GetIncomingTimelock ( ) uint32 {
if m != nil {
return m . IncomingTimelock
}
return 0
}
func ( m * HtlcInfo ) GetOutgoingTimelock ( ) uint32 {
if m != nil {
return m . OutgoingTimelock
}
return 0
}
func ( m * HtlcInfo ) GetIncomingAmtMsat ( ) uint64 {
if m != nil {
return m . IncomingAmtMsat
}
return 0
}
func ( m * HtlcInfo ) GetOutgoingAmtMsat ( ) uint64 {
if m != nil {
return m . OutgoingAmtMsat
}
return 0
}
type ForwardEvent struct {
// Info contains details about the htlc that was forwarded.
Info * HtlcInfo ` protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * ForwardEvent ) Reset ( ) { * m = ForwardEvent { } }
func ( m * ForwardEvent ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * ForwardEvent ) ProtoMessage ( ) { }
func ( * ForwardEvent ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 19 }
2020-03-13 10:30:16 +03:00
}
func ( m * ForwardEvent ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_ForwardEvent . Unmarshal ( m , b )
}
func ( m * ForwardEvent ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_ForwardEvent . Marshal ( b , m , deterministic )
}
func ( m * ForwardEvent ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_ForwardEvent . Merge ( m , src )
}
func ( m * ForwardEvent ) XXX_Size ( ) int {
return xxx_messageInfo_ForwardEvent . Size ( m )
}
func ( m * ForwardEvent ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_ForwardEvent . DiscardUnknown ( m )
}
var xxx_messageInfo_ForwardEvent proto . InternalMessageInfo
func ( m * ForwardEvent ) GetInfo ( ) * HtlcInfo {
if m != nil {
return m . Info
}
return nil
}
type ForwardFailEvent struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * ForwardFailEvent ) Reset ( ) { * m = ForwardFailEvent { } }
func ( m * ForwardFailEvent ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * ForwardFailEvent ) ProtoMessage ( ) { }
func ( * ForwardFailEvent ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 20 }
2020-03-13 10:30:16 +03:00
}
func ( m * ForwardFailEvent ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_ForwardFailEvent . Unmarshal ( m , b )
}
func ( m * ForwardFailEvent ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_ForwardFailEvent . Marshal ( b , m , deterministic )
}
func ( m * ForwardFailEvent ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_ForwardFailEvent . Merge ( m , src )
}
func ( m * ForwardFailEvent ) XXX_Size ( ) int {
return xxx_messageInfo_ForwardFailEvent . Size ( m )
}
func ( m * ForwardFailEvent ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_ForwardFailEvent . DiscardUnknown ( m )
}
var xxx_messageInfo_ForwardFailEvent proto . InternalMessageInfo
type SettleEvent struct {
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * SettleEvent ) Reset ( ) { * m = SettleEvent { } }
func ( m * SettleEvent ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * SettleEvent ) ProtoMessage ( ) { }
func ( * SettleEvent ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 21 }
2020-03-13 10:30:16 +03:00
}
func ( m * SettleEvent ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_SettleEvent . Unmarshal ( m , b )
}
func ( m * SettleEvent ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_SettleEvent . Marshal ( b , m , deterministic )
}
func ( m * SettleEvent ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_SettleEvent . Merge ( m , src )
}
func ( m * SettleEvent ) XXX_Size ( ) int {
return xxx_messageInfo_SettleEvent . Size ( m )
}
func ( m * SettleEvent ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_SettleEvent . DiscardUnknown ( m )
}
var xxx_messageInfo_SettleEvent proto . InternalMessageInfo
type LinkFailEvent struct {
// Info contains details about the htlc that we failed.
Info * HtlcInfo ` protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty" `
// FailureCode is the BOLT error code for the failure.
WireFailure lnrpc . Failure_FailureCode ` protobuf:"varint,2,opt,name=wire_failure,json=wireFailure,proto3,enum=lnrpc.Failure_FailureCode" json:"wire_failure,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//FailureDetail provides additional information about the reason for the
//failure. This detail enriches the information provided by the wire message
//and may be 'no detail' if the wire message requires no additional metadata.
FailureDetail FailureDetail ` protobuf:"varint,3,opt,name=failure_detail,json=failureDetail,proto3,enum=routerrpc.FailureDetail" json:"failure_detail,omitempty" `
// A string representation of the link failure.
FailureString string ` protobuf:"bytes,4,opt,name=failure_string,json=failureString,proto3" json:"failure_string,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * LinkFailEvent ) Reset ( ) { * m = LinkFailEvent { } }
func ( m * LinkFailEvent ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * LinkFailEvent ) ProtoMessage ( ) { }
func ( * LinkFailEvent ) Descriptor ( ) ( [ ] byte , [ ] int ) {
2020-04-03 18:05:05 +03:00
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 22 }
2020-03-13 10:30:16 +03:00
}
func ( m * LinkFailEvent ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_LinkFailEvent . Unmarshal ( m , b )
}
func ( m * LinkFailEvent ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_LinkFailEvent . Marshal ( b , m , deterministic )
}
func ( m * LinkFailEvent ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_LinkFailEvent . Merge ( m , src )
}
func ( m * LinkFailEvent ) XXX_Size ( ) int {
return xxx_messageInfo_LinkFailEvent . Size ( m )
}
func ( m * LinkFailEvent ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_LinkFailEvent . DiscardUnknown ( m )
}
var xxx_messageInfo_LinkFailEvent proto . InternalMessageInfo
func ( m * LinkFailEvent ) GetInfo ( ) * HtlcInfo {
if m != nil {
return m . Info
}
return nil
}
func ( m * LinkFailEvent ) GetWireFailure ( ) lnrpc . Failure_FailureCode {
if m != nil {
return m . WireFailure
}
return lnrpc . Failure_RESERVED
}
func ( m * LinkFailEvent ) GetFailureDetail ( ) FailureDetail {
if m != nil {
return m . FailureDetail
}
return FailureDetail_UNKNOWN
}
func ( m * LinkFailEvent ) GetFailureString ( ) string {
if m != nil {
return m . FailureString
}
return ""
}
2020-04-13 13:16:55 +03:00
type PaymentStatus struct {
2020-05-06 17:51:14 +03:00
// Current state the payment is in.
2020-04-13 13:16:55 +03:00
State PaymentState ` protobuf:"varint,1,opt,name=state,proto3,enum=routerrpc.PaymentState" json:"state,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//The pre-image of the payment when state is SUCCEEDED.
Preimage [ ] byte ` protobuf:"bytes,2,opt,name=preimage,proto3" json:"preimage,omitempty" `
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//The HTLCs made in attempt to settle the payment [EXPERIMENTAL].
Htlcs [ ] * lnrpc . HTLCAttempt ` protobuf:"bytes,4,rep,name=htlcs,proto3" json:"htlcs,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * PaymentStatus ) Reset ( ) { * m = PaymentStatus { } }
func ( m * PaymentStatus ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * PaymentStatus ) ProtoMessage ( ) { }
func ( * PaymentStatus ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_7a0613f69d37b0a5 , [ ] int { 23 }
}
func ( m * PaymentStatus ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_PaymentStatus . Unmarshal ( m , b )
}
func ( m * PaymentStatus ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_PaymentStatus . Marshal ( b , m , deterministic )
}
func ( m * PaymentStatus ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_PaymentStatus . Merge ( m , src )
}
func ( m * PaymentStatus ) XXX_Size ( ) int {
return xxx_messageInfo_PaymentStatus . Size ( m )
}
func ( m * PaymentStatus ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_PaymentStatus . DiscardUnknown ( m )
}
var xxx_messageInfo_PaymentStatus proto . InternalMessageInfo
func ( m * PaymentStatus ) GetState ( ) PaymentState {
if m != nil {
return m . State
}
return PaymentState_IN_FLIGHT
}
func ( m * PaymentStatus ) GetPreimage ( ) [ ] byte {
if m != nil {
return m . Preimage
}
return nil
}
func ( m * PaymentStatus ) GetHtlcs ( ) [ ] * lnrpc . HTLCAttempt {
if m != nil {
return m . Htlcs
}
return nil
}
2018-10-23 07:43:47 +03:00
func init ( ) {
2020-03-13 10:30:16 +03:00
proto . RegisterEnum ( "routerrpc.FailureDetail" , FailureDetail_name , FailureDetail_value )
2020-04-13 13:16:55 +03:00
proto . RegisterEnum ( "routerrpc.PaymentState" , PaymentState_name , PaymentState_value )
2020-03-13 10:30:16 +03:00
proto . RegisterEnum ( "routerrpc.HtlcEvent_EventType" , HtlcEvent_EventType_name , HtlcEvent_EventType_value )
2019-03-22 12:21:25 +03:00
proto . RegisterType ( ( * SendPaymentRequest ) ( nil ) , "routerrpc.SendPaymentRequest" )
2019-11-20 14:00:25 +03:00
proto . RegisterMapType ( ( map [ uint64 ] [ ] byte ) ( nil ) , "routerrpc.SendPaymentRequest.DestCustomRecordsEntry" )
2019-03-22 12:21:25 +03:00
proto . RegisterType ( ( * TrackPaymentRequest ) ( nil ) , "routerrpc.TrackPaymentRequest" )
2018-10-23 07:43:47 +03:00
proto . RegisterType ( ( * RouteFeeRequest ) ( nil ) , "routerrpc.RouteFeeRequest" )
proto . RegisterType ( ( * RouteFeeResponse ) ( nil ) , "routerrpc.RouteFeeResponse" )
2019-03-14 18:31:39 +03:00
proto . RegisterType ( ( * SendToRouteRequest ) ( nil ) , "routerrpc.SendToRouteRequest" )
proto . RegisterType ( ( * SendToRouteResponse ) ( nil ) , "routerrpc.SendToRouteResponse" )
2019-05-10 19:00:15 +03:00
proto . RegisterType ( ( * ResetMissionControlRequest ) ( nil ) , "routerrpc.ResetMissionControlRequest" )
proto . RegisterType ( ( * ResetMissionControlResponse ) ( nil ) , "routerrpc.ResetMissionControlResponse" )
2019-05-10 11:38:31 +03:00
proto . RegisterType ( ( * QueryMissionControlRequest ) ( nil ) , "routerrpc.QueryMissionControlRequest" )
proto . RegisterType ( ( * QueryMissionControlResponse ) ( nil ) , "routerrpc.QueryMissionControlResponse" )
2019-07-29 16:10:58 +03:00
proto . RegisterType ( ( * PairHistory ) ( nil ) , "routerrpc.PairHistory" )
2019-09-30 10:12:50 +03:00
proto . RegisterType ( ( * PairData ) ( nil ) , "routerrpc.PairData" )
2019-09-27 12:43:12 +03:00
proto . RegisterType ( ( * QueryProbabilityRequest ) ( nil ) , "routerrpc.QueryProbabilityRequest" )
proto . RegisterType ( ( * QueryProbabilityResponse ) ( nil ) , "routerrpc.QueryProbabilityResponse" )
2019-08-29 14:03:37 +03:00
proto . RegisterType ( ( * BuildRouteRequest ) ( nil ) , "routerrpc.BuildRouteRequest" )
proto . RegisterType ( ( * BuildRouteResponse ) ( nil ) , "routerrpc.BuildRouteResponse" )
2020-03-13 10:30:16 +03:00
proto . RegisterType ( ( * SubscribeHtlcEventsRequest ) ( nil ) , "routerrpc.SubscribeHtlcEventsRequest" )
proto . RegisterType ( ( * HtlcEvent ) ( nil ) , "routerrpc.HtlcEvent" )
proto . RegisterType ( ( * HtlcInfo ) ( nil ) , "routerrpc.HtlcInfo" )
proto . RegisterType ( ( * ForwardEvent ) ( nil ) , "routerrpc.ForwardEvent" )
proto . RegisterType ( ( * ForwardFailEvent ) ( nil ) , "routerrpc.ForwardFailEvent" )
proto . RegisterType ( ( * SettleEvent ) ( nil ) , "routerrpc.SettleEvent" )
proto . RegisterType ( ( * LinkFailEvent ) ( nil ) , "routerrpc.LinkFailEvent" )
2020-04-13 13:16:55 +03:00
proto . RegisterType ( ( * PaymentStatus ) ( nil ) , "routerrpc.PaymentStatus" )
2019-05-15 16:07:30 +03:00
}
func init ( ) { proto . RegisterFile ( "routerrpc/router.proto" , fileDescriptor_7a0613f69d37b0a5 ) }
var fileDescriptor_7a0613f69d37b0a5 = [ ] byte {
2020-05-07 12:48:39 +03:00
// 2268 bytes of a gzipped FileDescriptorProto
0x1f , 0x8b , 0x08 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x02 , 0xff , 0x94 , 0x58 , 0xcf , 0x77 , 0xdb , 0xc6 ,
0xf1 , 0x0f , 0x48 , 0x50 , 0x22 , 0x87 , 0x3f , 0x04 , 0x2d , 0x1d , 0x19 , 0x5f , 0x2a , 0x4e , 0x18 , 0x7c ,
0x13 , 0x87 , 0xcf , 0x4d , 0x24 , 0x47 , 0xed , 0x6b , 0xf3 , 0xda , 0x26 , 0x2d , 0x45 , 0x42 , 0x11 , 0x6c ,
0x0a , 0x60 , 0x96 , 0x94 , 0x6c , 0xd7 , 0x87 , 0x7d , 0x10 , 0xb9 , 0x14 , 0x51 , 0x81 , 0x00 , 0x0b , 0x2c ,
0xed , 0xe8 , 0xd8 , 0x5b , 0x5f , 0xaf , 0xfd , 0x23 , 0x7a , 0xeb , 0x5f , 0xd0 , 0xff , 0xa5 , 0xd7 , 0xde ,
0xfb , 0x5e , 0xcf , 0x7d , 0xbb , 0x58 , 0x90 , 0xa0 , 0x44 , 0xd9 , 0xed , 0x45 , 0xc2 , 0x7e , 0xe6 , 0xb3 ,
0xb3 , 0x33 , 0x3b , 0x33 , 0x3b , 0xbb , 0x84 , 0xbd , 0x28 , 0x5c , 0x30 , 0x1a , 0x45 , 0xf3 , 0xd1 , 0x61 ,
0xf2 , 0x75 , 0x30 , 0x8f , 0x42 , 0x16 , 0xa2 , 0xd2 , 0x12 , 0x6f , 0x94 , 0xa2 , 0xf9 , 0x28 , 0x41 , 0x8d ,
0x7f , 0x6d , 0x01 , 0x1a , 0xd0 , 0x60 , 0xdc , 0x77 , 0x6f , 0x66 , 0x34 , 0x60 , 0x98 , 0xfe , 0x61 , 0x41 ,
0x63 , 0x86 , 0x10 , 0xa8 , 0x63 , 0x1a , 0x33 , 0x5d , 0x69 , 0x2a , 0xad , 0x0a , 0x16 , 0xdf , 0x48 , 0x83 ,
0xbc , 0x3b , 0x63 , 0x7a , 0xae , 0xa9 , 0xb4 , 0xf2 , 0x98 , 0x7f , 0xa2 , 0xff , 0x83 , 0xa2 , 0x3b , 0x63 ,
0x64 , 0x16 , 0xbb , 0x4c , 0xaf , 0x08 , 0x78 , 0xdb , 0x9d , 0xb1 , 0xb3 , 0xd8 , 0x65 , 0xe8 , 0x53 , 0xa8 ,
0xcc , 0x13 , 0x95 , 0x64 , 0xea , 0xc6 , 0x53 , 0x3d , 0x2f , 0x14 , 0x95 , 0x25 , 0x76 , 0xea , 0xc6 , 0x53 ,
0xd4 , 0x02 , 0x6d , 0xe2 , 0x05 , 0xae , 0x4f , 0x46 , 0x3e , 0x7b , 0x43 , 0xc6 , 0xd4 , 0x67 , 0xae , 0xae ,
0x36 , 0x95 , 0x56 , 0x01 , 0xd7 , 0x04 , 0xde , 0xf1 , 0xd9 , 0x9b , 0x2e , 0x47 , 0xd1 , 0x17 , 0xb0 , 0x93 ,
0x2a , 0x8b , 0x12 , 0x03 , 0xf5 , 0x42 , 0x53 , 0x69 , 0x95 , 0x70 , 0x6d , 0xbe , 0x6e , 0xf6 , 0x17 , 0xb0 ,
0xc3 , 0xbc , 0x19 , 0x0d , 0x17 , 0x8c , 0xc4 , 0x74 , 0x14 , 0x06 , 0xe3 , 0x58 , 0xdf , 0x4a , 0x34 , 0x4a ,
0x78 , 0x90 , 0xa0 , 0xc8 , 0x80 , 0xea , 0x84 , 0x52 , 0xe2 , 0x7b , 0x33 , 0x8f , 0x11 , 0x6e , 0xfe , 0xb6 ,
0x30 , 0xbf , 0x3c , 0xa1 , 0xb4 , 0xc7 , 0xb1 , 0x81 , 0xcb , 0xd0 , 0x67 , 0x50 , 0x5b , 0x71 , 0x84 , 0x8f ,
0x55 , 0x41 , 0xaa , 0xa4 , 0x24 , 0xe1 , 0xe8 , 0x01 , 0x68 , 0xe1 , 0x82 , 0x5d , 0x85 , 0x5e , 0x70 , 0x45 ,
0x46 , 0x53 , 0x37 , 0x20 , 0xde , 0x58 , 0x2f , 0x36 , 0x95 , 0x96 , 0x7a , 0xac , 0xea , 0xca , 0x53 , 0x05 ,
0xd7 , 0x52 , 0x69 , 0x67 , 0xea , 0x06 , 0xd6 , 0x18 , 0x3d , 0x81 , 0xdd , 0xdb , 0xfc , 0x58 , 0xaf , 0x37 ,
0xf3 , 0x2d , 0x15 , 0xef , 0xac , 0x53 , 0x63 , 0xf4 , 0x18 , 0x76 , 0x7c , 0x37 , 0x66 , 0x64 , 0x1a , 0xce ,
0xc9 , 0x7c , 0x71 , 0x79 , 0x4d , 0x6f , 0xf4 , 0x9a , 0xd8 , 0xc7 , 0x2a , 0x87 , 0x4f , 0xc3 , 0x79 , 0x5f ,
0x80 , 0xe8 , 0x11 , 0x80 , 0xd8 , 0x43 , 0x61 , 0xaa , 0x5e , 0x12 , 0x1e , 0x97 , 0x38 , 0x22 , 0xcc , 0x44 ,
0x5f , 0x43 , 0x59 , 0xc4 , 0x9e , 0x4c , 0xbd , 0x80 , 0xc5 , 0x3a , 0x34 , 0xf3 , 0xad , 0xf2 , 0x91 , 0x76 ,
0xe0 , 0x07 , 0x3c , 0x0d , 0x30 , 0x97 , 0x9c , 0x7a , 0x01 , 0xc3 , 0x10 , 0xa5 , 0x9f , 0x31 , 0x1a , 0x43 ,
0x9d , 0xc7 , 0x9c , 0x8c , 0x16 , 0x31 , 0x0b , 0x67 , 0x24 , 0xa2 , 0xa3 , 0x30 , 0x1a , 0xc7 , 0x7a , 0x59 ,
0x4c , 0xfd , 0xd9 , 0xc1 , 0x32 , 0x95 , 0x0e , 0xee , 0xe6 , 0xce , 0x41 , 0x97 , 0xc6 , 0xac , 0x23 , 0xe6 ,
0xe1 , 0x64 , 0x9a , 0x19 , 0xb0 , 0xe8 , 0x06 , 0xef , 0x8e , 0x6f , 0xe3 , 0xe8 , 0x4b , 0x40 , 0xae , 0xef ,
0x87 , 0x6f , 0x49 , 0x4c , 0xfd , 0x09 , 0x91 , 0xb1 , 0xd4 , 0x77 , 0x9a , 0x4a , 0xab , 0x88 , 0x35 , 0x21 ,
0x19 , 0x50 , 0x7f , 0x22 , 0xd5 , 0xa3 , 0x9f , 0x43 , 0x55 , 0xd8 , 0x34 , 0xa1 , 0x2e , 0x5b , 0x44 , 0x34 ,
0xd6 , 0xb5 , 0x66 , 0xbe , 0x55 , 0x3b , 0xda , 0x95 , 0x8e , 0x9c , 0x24 , 0xf0 , 0xb1 , 0xc7 , 0x70 , 0x85 ,
0xf3 , 0xe4 , 0x38 , 0x46 , 0xfb , 0x50 , 0x9a , 0xb9 , 0x3f , 0x92 , 0xb9 , 0x1b , 0xb1 , 0x58 , 0xdf , 0x6d ,
0x2a , 0xad , 0x2a , 0x2e , 0xce , 0xdc , 0x1f , 0xfb , 0x7c , 0x8c , 0x0e , 0xa0 , 0x1e , 0x84 , 0xc4 , 0x0b ,
0x26 , 0xbe , 0x77 , 0x35 , 0x65 , 0x64 , 0x31 , 0x1f , 0xbb , 0x8c , 0xc6 , 0x3a , 0x12 , 0x36 , 0xec , 0x06 ,
0xa1 , 0x25 , 0x25 , 0xe7 , 0x89 , 0xa0 , 0xd1 , 0x85 , 0xbd , 0xcd , 0xfe , 0xf1 , 0xf2 , 0xe0 , 0x01 , 0xe2 ,
0x15 , 0xa3 , 0x62 , 0xfe , 0x89 , 0x1e , 0x40 , 0xe1 , 0x8d , 0xeb , 0x2f , 0xa8 , 0x28 , 0x99 , 0x0a , 0x4e ,
0x06 , 0xbf , 0xcc , 0x7d , 0xa3 , 0x18 , 0x53 , 0xa8 , 0x0f , 0x23 , 0x77 , 0x74 , 0x7d , 0xab , 0xea , 0x6e ,
0x17 , 0x8d , 0x72 , 0xb7 , 0x68 , 0xee , 0xb1 , 0x37 , 0x77 , 0x8f , 0xbd , 0xc6 , 0x77 , 0xb0 , 0x23 , 0x22 ,
0x7c , 0x42 , 0xe9 , 0xbb , 0x6a , 0xfb , 0x21 , 0xf0 , 0xca , 0x15 , 0x95 , 0x90 , 0xd4 , 0xf7 , 0x96 , 0x3b ,
0xe3 , 0x45 , 0x60 , 0x8c , 0x41 , 0x5b , 0xcd , 0x8f , 0xe7 , 0x61 , 0x10 , 0x53 , 0x5e , 0xb8 , 0x3c , 0x01 ,
0x78 , 0x06 , 0xf3 , 0x02 , 0x11 , 0xa5 , 0xa1 , 0x88 , 0x59 , 0x35 , 0x89 , 0x9f , 0x50 , 0x2a , 0x8a , 0xe3 ,
0x71 , 0x52 , 0x8f , 0xc4 , 0x0f , 0x47 , 0xd7 , 0xbc , 0xc2 , 0xdd , 0x1b , 0xa9 , 0xbe , 0xca , 0xe1 , 0x5e ,
0x38 , 0xba , 0xee , 0x72 , 0xd0 , 0x78 , 0x9d , 0x1c , 0x42 , 0xc3 , 0x50 , 0xac , 0xf5 , 0x3f , 0x6c , 0x87 ,
0x01 , 0x05 , 0x91 , 0x8b , 0x42 , 0x6d , 0xf9 , 0xa8 , 0x92 , 0x4d , 0x6a , 0x9c , 0x88 , 0x8c , 0xd7 , 0x50 ,
0x5f , 0x53 , 0x2e , 0xbd , 0x68 , 0x40 , 0x71 , 0x1e , 0x51 , 0x6f , 0xe6 , 0x5e , 0x51 , 0xa9 , 0x79 , 0x39 ,
0x46 , 0x2d , 0xd8 , 0x9e , 0xb8 , 0x9e , 0xbf , 0x88 , 0x52 , 0xc5 , 0xb5 , 0x34 , 0xc9 , 0x12 , 0x14 , 0xa7 ,
0x62 , 0xe3 , 0x23 , 0x68 , 0x60 , 0x1a , 0x53 , 0x76 , 0xe6 , 0xc5 , 0xb1 , 0x17 , 0x06 , 0x9d , 0x30 , 0x60 ,
0x51 , 0xe8 , 0x4b , 0x0f , 0x8c , 0x47 , 0xb0 , 0xbf , 0x51 , 0x9a , 0x98 , 0xc0 , 0x27 , 0xff , 0xb0 , 0xa0 ,
0xd1 , 0xcd , 0xe6 , 0xc9 , 0x3f , 0xc0 , 0xfe , 0x46 , 0xa9 , 0xb4 , 0xff , 0x4b , 0x28 , 0xcc , 0x5d , 0x2f ,
0xe2 , 0xb1 , 0xe7 , 0x45 , 0xb9 , 0x97 , 0x29 , 0xca , 0xbe , 0xeb , 0x45 , 0xa7 , 0x5e , 0xcc , 0xc2 , 0xe8 ,
0x06 , 0x27 , 0xa4 , 0x67 , 0x6a , 0x51 , 0xd1 , 0x72 , 0xc6 , 0x9f , 0x15 , 0x28 , 0x67 , 0x84 , 0xbc , 0x34 ,
0x82 , 0x70 , 0x4c , 0xc9 , 0x24 , 0x0a , 0x67 , 0xe9 , 0x26 , 0x70 , 0xe0 , 0x24 , 0x0a , 0x67 , 0x3c , 0x27 ,
0x84 , 0x90 , 0x85 , 0x32 , 0x81 , 0xb7 , 0xf8 , 0x70 , 0x18 , 0xa2 , 0xaf , 0x60 , 0x7b , 0x9a , 0x28 , 0x10 ,
0xc7 , 0x66 , 0xf9 , 0xa8 , 0x7e , 0x6b , 0xed , 0xae , 0xcb , 0x5c , 0x9c , 0x72 , 0x9e , 0xa9 , 0xc5 , 0xbc ,
0xa6 , 0x3e , 0x53 , 0x8b , 0xaa , 0x56 , 0x78 , 0xa6 , 0x16 , 0x0b , 0xda , 0xd6 , 0x33 , 0xb5 , 0xb8 , 0xa5 ,
0x6d , 0x1b , 0xff , 0x54 , 0xa0 , 0x98 , 0xb2 , 0xb9 , 0x25 , 0x7c , 0x4b , 0x09 , 0xcf , 0x0b , 0x99 , 0x4c ,
0x45 , 0x0e , 0x0c , 0xbd , 0x19 , 0x45 , 0x4d , 0xa8 , 0x08 , 0xe1 , 0x7a , 0x8a , 0x02 , 0xc7 , 0xda , 0x22 ,
0x4d , 0xc5 , 0x79 , 0x9e , 0x32 , 0x44 , 0x3e , 0xaa , 0xf2 , 0x3c , 0x4f , 0x28 , 0x69 , 0x4b , 0x8a , 0x17 ,
0xa3 , 0x11 , 0x8d , 0xe3 , 0x64 , 0x95 , 0x42 , 0x42 , 0x91 , 0x98 , 0x58 , 0xe8 , 0x31 , 0xec , 0xa4 , 0x94 ,
0x74 , 0xad , 0xad , 0x24 , 0x5f , 0x25 , 0x2c , 0x97 , 0x6b , 0x81 , 0x96 , 0xe5 , 0xcd , 0x56 , 0x1d , 0xa4 ,
0xb6 , 0x22 , 0xf2 , 0x45 , 0x13 , 0xe7 , 0x8d , 0xdf , 0xc3 , 0x43 , 0x11 , 0xca , 0x7e , 0x14 , 0x5e , 0xba ,
0x97 , 0x9e , 0xef , 0xb1 , 0x9b , 0x34 , 0xc9 , 0xb9 , 0xe3 , 0x51 , 0x38 , 0x23 , 0x7c , 0x6f , 0xd3 , 0x10 ,
0x70 , 0xc0 , 0x0e , 0xc7 , 0x94 , 0x87 , 0x80 , 0x85 , 0x89 , 0x48 , 0x86 , 0x80 , 0x85 , 0x42 , 0x90 , 0xed ,
0xbc , 0xf9 , 0xb5 , 0xce , 0x6b , 0x5c , 0x83 , 0x7e , 0x77 , 0x2d , 0x99 , 0x33 , 0x4d , 0x28 , 0xcf , 0x57 ,
0xb0 , 0x58 , 0x4e , 0xc1 , 0x59 , 0x28 , 0x1b , 0xdb , 0xdc , 0xfb , 0x63 , 0x6b , 0xfc , 0x55 , 0x81 , 0xdd ,
0xe3 , 0x85 , 0xe7 , 0x8f , 0xd7 , 0x0a , 0x37 , 0x6b , 0x9d , 0xb2 , 0x7e , 0x2f , 0xd8 , 0xd4 , 0xf4 , 0x73 ,
0x1b , 0x9b , 0xfe , 0x97 , 0x1b , 0x1a , 0x6b , 0x5e , 0x34 , 0xd6 , 0xdc , 0x86 , 0xb6 , 0xfa , 0x09 , 0x94 ,
0x57 , 0x5d , 0x32 , 0xd6 , 0xd5 , 0x66 , 0xbe , 0x55 , 0xc1 , 0x30 , 0x4d , 0x5b , 0x64 , 0x6c , 0x7c , 0x03 ,
0x28 , 0x6b , 0xa8 , 0xdc , 0x90 , 0xe5 , 0xf9 , 0xa1 , 0xdc , 0x7f , 0x7e , 0x7c , 0x04 , 0x8d , 0xc1 , 0xe2 ,
0x32 , 0x1e , 0x45 , 0xde , 0x25 , 0x3d , 0x65 , 0xfe , 0xc8 , 0x7c , 0x43 , 0x03 , 0x16 , 0xa7 , 0x55 , 0xfa ,
0x6f , 0x15 , 0x4a , 0x4b , 0x94 , 0x1f , 0xcf , 0x5e , 0x30 , 0x0a , 0x67 , 0xa9 , 0xd1 , 0x01 , 0xf5 , 0xb9 ,
0xdd , 0x49 , 0x53 , 0xd8 , 0x4d , 0x45 , 0x9d , 0x44 , 0x62 , 0x8d , 0x39 , 0x7f , 0xcd , 0x49 , 0xc9 , 0xcf ,
0x25 , 0xfc , 0xac , 0x8f , 0x09 , 0xbf , 0x05 , 0xda , 0x52 , 0xff , 0x94 , 0xf9 , 0xa3 , 0xe5 , 0xa6 , 0xe0 ,
0x5a , 0x8a , 0x73 , 0x63 , 0x12 , 0xe6 , 0x52 , 0x73 , 0xca , 0x54 , 0x13 , 0x66 , 0x8a , 0x4b , 0xe6 , 0xa7 ,
0x50 , 0xe1 , 0xf5 , 0x10 , 0x33 , 0x77 , 0x36 , 0x27 , 0x41 , 0x2c , 0xea , 0x42 , 0xc5 , 0xe5 , 0x25 , 0x66 ,
0xc7 , 0xe8 , 0x5b , 0x00 , 0xca , 0xfd , 0x23 , 0xec , 0x66 , 0x4e , 0x45 , 0x49 , 0xd4 , 0x8e , 0x3e , 0xce ,
0x24 , 0xc6 , 0x72 , 0x03 , 0x0e , 0xc4 , 0xdf , 0xe1 , 0xcd , 0x9c , 0xe2 , 0x12 , 0x4d , 0x3f , 0xd1 , 0x77 ,
0x50 , 0x9d , 0x84 , 0xd1 , 0x5b , 0x37 , 0x1a , 0x13 , 0x01 , 0xca , 0x63 , 0xe3 , 0x61 , 0x46 , 0xc3 , 0x49 ,
0x22 , 0x17 , 0xd3 , 0x4f , 0x3f , 0xc0 , 0x95 , 0x49 , 0x66 , 0x8c , 0x9e , 0x03 , 0x4a , 0xe7 , 0x8b , 0x2a ,
0x4f , 0x94 , 0x14 , 0x85 , 0x92 , 0xfd , 0xbb , 0x4a , 0xf8 , 0x21 , 0x9d , 0x2a , 0xd2 , 0x26 , 0xb7 , 0x30 ,
0xf4 , 0x2b , 0xa8 , 0xc4 , 0x94 , 0x31 , 0x9f , 0x4a , 0x35 , 0x25 , 0xa1 , 0x66 , 0x6f , 0xed , 0x4e , 0xc3 ,
0xc5 , 0xa9 , 0x86 , 0x72 , 0xbc , 0x1a , 0xa2 , 0x63 , 0xd8 , 0xf1 , 0xbd , 0xe0 , 0x3a , 0x6b , 0x06 , 0x88 ,
0xf9 , 0x7a , 0x66 , 0x7e , 0xcf , 0x0b , 0xae , 0xb3 , 0x36 , 0x54 , 0xfd , 0x2c , 0x60 , 0xfc , 0x1a , 0x4a ,
0xcb , 0x5d , 0x42 , 0x65 , 0xd8 , 0x3e , 0xb7 , 0x9f , 0xdb , 0xce , 0x0b , 0x5b , 0xfb , 0x00 , 0x15 , 0x41 ,
0x1d , 0x98 , 0x76 , 0x57 , 0x53 , 0x38 , 0x8c , 0xcd , 0x8e , 0x69 , 0x5d , 0x98 , 0x5a , 0x8e , 0x0f , 0x4e ,
0x1c , 0xfc , 0xa2 , 0x8d , 0xbb , 0x5a , 0xfe , 0x78 , 0x1b , 0x0a , 0x62 , 0x5d , 0xe3 , 0xef , 0x0a , 0x14 ,
0x45 , 0x04 , 0x83 , 0x49 , 0x88 , 0x7e , 0x02 , 0xcb , 0xe4 , 0x12 , 0x87 , 0x1b , 0x6f , 0xb8 , 0x22 , 0xeb ,
0xaa , 0x78 , 0x99 , 0x30 , 0x43 , 0x89 , 0x73 , 0xf2 , 0x32 , 0x35 , 0x96 , 0xe4 , 0x5c , 0x42 , 0x4e , 0x05 ,
0x4b , 0xf2 , 0x93 , 0x8c , 0xe6 , 0xb5 , 0x23 , 0x47 , 0xc5 , 0x3b , 0xa9 , 0x20 , 0x3d , 0x61 , 0xb3 , 0x77 ,
0xdb , 0xb5 , 0x93 , 0x38 , 0x73 , 0xb7 , 0x95 , 0x5c , 0xe3 , 0x17 , 0x50 , 0xc9 , 0xc6 , 0x1c , 0x7d , 0x01 ,
0xaa , 0x17 , 0x4c , 0x42 , 0x59 , 0x88 , 0xf5 , 0x5b , 0xc9 , 0xc5 , 0x9d , 0xc4 , 0x82 , 0x60 , 0x20 , 0xd0 ,
0x6e , 0xc7 , 0xd9 , 0xa8 , 0x42 , 0x39 , 0x13 , 0x34 , 0xe3 , 0x1f , 0x0a , 0x54 , 0xd7 , 0x82 , 0xf0 , 0x5f ,
0x6b , 0x47 , 0xdf , 0x42 , 0xe5 , 0xad , 0x17 , 0x51 , 0x92 , 0x6d , 0xff , 0xb5 , 0xa3 , 0xc6 , 0x7a , 0xfb ,
0x4f , 0xff , 0x77 , 0xc2 , 0x31 , 0xc5 , 0x65 , 0xce , 0x97 , 0x00 , 0xfa , 0x0d , 0xd4 , 0xe4 , 0x4c , 0x32 ,
0xa6 , 0xcc , 0xf5 , 0x7c , 0xb1 , 0x55 , 0xb5 , 0xb5 , 0xf4 , 0x90 , 0xdc , 0xae , 0x90 , 0xe3 , 0xea , 0x24 ,
0x3b , 0x44 , 0x9f , 0xaf , 0x14 , 0xc4 , 0x2c , 0xf2 , 0x82 , 0x2b , 0xb1 , 0x7f , 0xa5 , 0x25 , 0x6d , 0x20 ,
0x40 , 0xde , 0xc8 , 0xab , 0xf2 , 0xf2 , 0x38 , 0x60 , 0x2e , 0x5b , 0xc4 , 0xe8 , 0x2b , 0x28 , 0xc4 , 0xcc ,
0x95 , 0x27 , 0x59 , 0x6d , 0xad , 0xb6 , 0x32 , 0x44 , 0x8a , 0x13 , 0xd6 , 0xda , 0xed , 0x27 , 0x77 , 0xe7 ,
0xf6 , 0x53 , 0xe0 , 0x27 , 0x46 , 0x72 , 0x8a , 0x96 , 0x8f , 0x90 , 0x74 , 0xfe , 0x74 , 0xd8 , 0xeb , 0xb4 ,
0x19 , 0xa3 , 0xb3 , 0x39 , 0xc3 , 0x09 , 0x21 , 0xe9 , 0x6e , 0x4f , 0xfe , 0xa8 , 0x42 , 0x75 , 0xcd , 0xa9 ,
0xf5 , 0xac , 0xae , 0x42 , 0xc9 , 0x76 , 0x48 , 0xd7 , 0x1c , 0xb6 , 0xad , 0x9e , 0xa6 , 0x20 , 0x0d , 0x2a ,
0x8e , 0x6d , 0x39 , 0x36 , 0xe9 , 0x9a , 0x1d , 0xa7 , 0xcb , 0xf3 , 0xfb , 0x43 , 0xd8 , 0xed , 0x59 , 0xf6 ,
0x73 , 0x62 , 0x3b , 0x43 , 0x62 , 0xf6 , 0xac , 0xef , 0xad , 0xe3 , 0x9e , 0xa9 , 0xe5 , 0xd1 , 0x03 , 0xd0 ,
0x1c , 0x9b , 0x74 , 0x4e , 0xdb , 0x96 , 0x4d , 0x86 , 0xd6 , 0x99 , 0xe9 , 0x9c , 0x0f , 0x35 , 0x95 , 0xa3 ,
0xdc , 0x10 , 0x62 , 0xbe , 0xec , 0x98 , 0x66 , 0x77 , 0x40 , 0xce , 0xda , 0x2f , 0xb5 , 0x02 , 0xd2 , 0xe1 ,
0x81 , 0x65 , 0x0f , 0xce , 0x4f , 0x4e , 0xac , 0x8e , 0x65 , 0xda , 0x43 , 0x72 , 0xdc , 0xee , 0xb5 , 0xed ,
0x8e , 0xa9 , 0x6d , 0xa1 , 0x3d , 0x40 , 0x96 , 0xdd , 0x71 , 0xce , 0xfa , 0x3d , 0x73 , 0x68 , 0x92 , 0xb4 ,
0x8e , 0xb6 , 0x51 , 0x1d , 0x76 , 0x84 , 0x9e , 0x76 , 0xb7 , 0x4b , 0x4e , 0xda , 0x56 , 0xcf , 0xec , 0x6a ,
0x45 , 0x6e , 0x89 , 0x64 , 0x0c , 0x48 , 0xd7 , 0x1a , 0xb4 , 0x8f , 0x39 , 0x5c , 0xe2 , 0x6b , 0x5a , 0xf6 ,
0x85 , 0x63 , 0x75 , 0x4c , 0xd2 , 0xe1 , 0x6a , 0x39 , 0x0a , 0x9c , 0x9c , 0xa2 , 0xe7 , 0x76 , 0xd7 , 0xc4 ,
0xfd , 0xb6 , 0xd5 , 0xd5 , 0xca , 0x68 , 0x1f , 0x1e , 0xa6 , 0xb0 , 0xf9 , 0xb2 , 0x6f , 0xe1 , 0x57 , 0x64 ,
0xe8 , 0x38 , 0x64 , 0xe0 , 0x38 , 0xb6 , 0x56 , 0xc9 , 0x6a , 0xe2 , 0xde , 0x3a , 0x7d , 0xd3 , 0xd6 , 0xaa ,
0xe8 , 0x21 , 0xd4 , 0xcf , 0xfa , 0x7d , 0x92 , 0x4a , 0x52 , 0x67 , 0x6b , 0x9c , 0xde , 0xee , 0x76 , 0xb1 ,
0x39 , 0x18 , 0x90 , 0x33 , 0x6b , 0x70 , 0xd6 , 0x1e , 0x76 , 0x4e , 0xb5 , 0x1d , 0xee , 0xd2 , 0xc0 , 0x1c ,
0x92 , 0xa1 , 0x33 , 0x6c , 0xf7 , 0x56 , 0xb8 , 0xc6 , 0x0d , 0x5a , 0xe1 , 0x7c , 0xd1 , 0x9e , 0xf3 , 0x42 ,
0xdb , 0xe5 , 0x1b , 0xce , 0x61 , 0xe7 , 0x42 , 0x9a , 0x88 , 0xb8 , 0xef , 0x32 , 0x3c , 0xe9 , 0x9a , 0x5a ,
0x9d , 0x83 , 0x96 , 0x7d , 0xd1 , 0xee , 0x59 , 0x5d , 0xf2 , 0xdc , 0x7c , 0x25 , 0xce , 0xa1 , 0x07 , 0x1c ,
0x4c , 0x2c , 0x23 , 0x7d , 0xec , 0x7c , 0xcf , 0x0d , 0xd1 , 0x3e , 0x44 , 0x08 , 0x6a , 0x1d , 0x0b , 0x77 ,
0xce , 0x7b , 0x6d , 0x4c , 0xb0 , 0x73 , 0x3e , 0x34 , 0xb5 , 0xbd , 0x27 , 0x7f , 0x53 , 0xa0 , 0x92 , 0xcd ,
0x33 , 0x1e , 0x75 , 0xcb , 0x26 , 0x27 , 0x3d , 0xeb , 0xfb , 0xd3 , 0x61 , 0x92 , 0x04 , 0x83 , 0xf3 , 0x0e ,
0x0f , 0x99 , 0xc9 , 0xcf , 0x37 , 0x04 , 0xb5 , 0x64 , 0xd3 , 0x97 , 0xce , 0xe6 , 0xf8 , 0x5a , 0x12 , 0xb3 ,
0x1d , 0xa9 , 0x37 , 0xcf , 0x8d , 0x97 , 0xa0 , 0x89 , 0xb1 , 0x83 , 0x35 , 0x15 , 0x7d , 0x06 , 0x4d , 0x89 ,
0xf0 , 0xb8 , 0x62 , 0x6c , 0x76 , 0x86 , 0xa4 , 0xdf , 0x7e , 0x75 , 0xc6 , 0xc3 , 0x9e , 0x24 , 0xd9 , 0x40 ,
0x2b , 0xa0 , 0x4f , 0x60 , 0x7f , 0xc9 , 0xda , 0x94 , 0x17 , 0x47 , 0x7f , 0xd9 , 0x86 , 0x2d , 0xd1 , 0xe6 ,
0x23 , 0xf4 , 0x5b , 0xa8 , 0x66 , 0x9e , 0xb1 , 0x17 , 0x47 , 0xe8 , 0xd1 , 0x3b , 0x1f , 0xb8 , 0x8d , 0xf4 ,
0x31 , 0x20 , 0xe1 , 0xa7 , 0x0a , 0x3a , 0x86 , 0x5a , 0xf6 , 0x3d , 0x77 , 0x71 , 0x84 , 0xb2 , 0xdd , 0x71 ,
0xc3 , 0x53 , 0x6f , 0x83 , 0x8e , 0xe7 , 0xa0 , 0x99 , 0x31 , 0xf3 , 0x66 , 0xbc , 0x48 , 0xe5 , 0x8b , 0x0b ,
0x35 , 0x32 , 0x5a , 0x6e , 0x3d , 0xe3 , 0x1a , 0xfb , 0x1b , 0x65 , 0xf2 , 0x5e , 0xd3 , 0xe3 , 0x07 , 0xe2 ,
0xf2 , 0xcd , 0x73 , 0xc7 , 0xa1 , 0xf5 , 0x87 , 0x56 , 0xe3 , 0xe3 , 0xfb , 0xc4 , 0x52 , 0xdb , 0x18 , 0xea ,
0x1b , 0x9e , 0x31 , 0xe8 , 0xf3 , 0xac , 0x05 , 0xf7 , 0x3e , 0x82 , 0x1a , 0x8f , 0xdf , 0x47 , 0x5b , 0xad ,
0xb2 , 0xe1 , 0xbd , 0xb3 , 0xb6 , 0xca , 0xfd , 0xaf , 0xa5 , 0xb5 , 0x55 , 0xde , 0xf5 , 0x6c , 0x7a , 0x0d ,
0xda , 0xed , 0xeb , 0x31 , 0x32 , 0x6e , 0xcf , 0xbd , 0x7b , 0x4f , 0x6f , 0xfc , 0xff , 0x3b , 0x39 , 0x52 ,
0xb9 , 0x05 , 0xb0 , 0xba , 0x64 , 0xa2 , 0x8f , 0x32 , 0x53 , 0xee , 0x5c , 0x92 , 0x1b , 0x8f , 0xee , 0x91 ,
0x4a , 0x55 , 0x43 , 0xa8 , 0x6f , 0xb8 , 0x75 , 0xae , 0xed , 0xc6 , 0xfd , 0xb7 , 0xd2 , 0xc6 , 0x83 , 0x4d ,
0x97 , 0xb3 , 0xa7 , 0x0a , 0x3a , 0x4b , 0xf2 , 0x22 , 0xfd , 0x49 , 0xe5 , 0x3d , 0x89 , 0xae , 0x6f , 0x6e ,
0x22 , 0x8b , 0xd8 , 0xc8 , 0xff , 0x29 , 0xa7 , 0x3c , 0x55 , 0x90 , 0x03 , 0x95 , 0x6c , 0x72 , 0xbf , 0x37 ,
0xeb , 0xdf , 0xa7 , 0xf0 , 0xf8 , 0xeb , 0xdf , 0x1d , 0x5e , 0x79 , 0x6c , 0xba , 0xb8 , 0x3c , 0x18 , 0x85 ,
0xb3 , 0x43 , 0xf1 , 0x4b , 0x46 , 0xe0 , 0x05 , 0x57 , 0x01 , 0x65 , 0x6f , 0xc3 , 0xe8 , 0xfa , 0xd0 , 0x0f ,
0xc6 , 0x87 , 0xa2 , 0x6e , 0x0e , 0x97 , 0x7a , 0x2e , 0xb7 , 0xc4 , 0x0f , 0x99 , 0x3f , 0xfd , 0x4f , 0x00 ,
0x00 , 0x00 , 0xff , 0xff , 0x61 , 0x45 , 0xd3 , 0x59 , 0xf8 , 0x14 , 0x00 , 0x00 ,
2018-10-23 07:43:47 +03:00
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context . Context
var _ grpc . ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc . SupportPackageIsVersion4
// RouterClient is the client API for Router service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type RouterClient interface {
2020-05-06 17:51:14 +03:00
//
2020-04-13 11:07:53 +03:00
//SendPaymentV2 attempts to route a payment described by the passed
2019-03-22 12:21:25 +03:00
//PaymentRequest to the final destination. The call returns a stream of
2020-04-03 18:05:05 +03:00
//payment updates.
2020-04-13 11:07:53 +03:00
SendPaymentV2 ( ctx context . Context , in * SendPaymentRequest , opts ... grpc . CallOption ) ( Router_SendPaymentV2Client , error )
2020-05-06 17:51:14 +03:00
//
2020-04-13 11:07:53 +03:00
//TrackPaymentV2 returns an update stream for the payment identified by the
2019-03-22 12:21:25 +03:00
//payment hash.
2020-04-13 11:07:53 +03:00
TrackPaymentV2 ( ctx context . Context , in * TrackPaymentRequest , opts ... grpc . CallOption ) ( Router_TrackPaymentV2Client , error )
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//EstimateRouteFee allows callers to obtain a lower bound w.r.t how much it
//may cost to send an HTLC to the target end destination.
2018-10-23 07:43:47 +03:00
EstimateRouteFee ( ctx context . Context , in * RouteFeeRequest , opts ... grpc . CallOption ) ( * RouteFeeResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//SendToRoute attempts to make a payment via the specified route. This method
//differs from SendPayment in that it allows users to specify a full route
//manually. This can be used for things like rebalancing, and atomic swaps.
2019-03-14 18:31:39 +03:00
SendToRoute ( ctx context . Context , in * SendToRouteRequest , opts ... grpc . CallOption ) ( * SendToRouteResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-10 19:00:15 +03:00
//ResetMissionControl clears all mission control state and starts with a clean
//slate.
ResetMissionControl ( ctx context . Context , in * ResetMissionControlRequest , opts ... grpc . CallOption ) ( * ResetMissionControlResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-10 11:38:31 +03:00
//QueryMissionControl exposes the internal mission control state to callers.
//It is a development feature.
QueryMissionControl ( ctx context . Context , in * QueryMissionControlRequest , opts ... grpc . CallOption ) ( * QueryMissionControlResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-09-27 12:43:12 +03:00
//QueryProbability returns the current success probability estimate for a
//given node pair and amount.
QueryProbability ( ctx context . Context , in * QueryProbabilityRequest , opts ... grpc . CallOption ) ( * QueryProbabilityResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//BuildRoute builds a fully specified route based on a list of hop public
//keys. It retrieves the relevant channel policies from the graph in order to
//calculate the correct fees and time locks.
BuildRoute ( ctx context . Context , in * BuildRouteRequest , opts ... grpc . CallOption ) ( * BuildRouteResponse , error )
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//SubscribeHtlcEvents creates a uni-directional stream from the server to
//the client which delivers a stream of htlc events.
SubscribeHtlcEvents ( ctx context . Context , in * SubscribeHtlcEventsRequest , opts ... grpc . CallOption ) ( Router_SubscribeHtlcEventsClient , error )
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Deprecated, use SendPaymentV2. SendPayment attempts to route a payment
//described by the passed PaymentRequest to the final destination. The call
//returns a stream of payment status updates.
SendPayment ( ctx context . Context , in * SendPaymentRequest , opts ... grpc . CallOption ) ( Router_SendPaymentClient , error )
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Deprecated, use TrackPaymentV2. TrackPayment returns an update stream for
//the payment identified by the payment hash.
TrackPayment ( ctx context . Context , in * TrackPaymentRequest , opts ... grpc . CallOption ) ( Router_TrackPaymentClient , error )
2018-10-23 07:43:47 +03:00
}
type routerClient struct {
cc * grpc . ClientConn
}
func NewRouterClient ( cc * grpc . ClientConn ) RouterClient {
return & routerClient { cc }
}
2020-04-13 11:07:53 +03:00
func ( c * routerClient ) SendPaymentV2 ( ctx context . Context , in * SendPaymentRequest , opts ... grpc . CallOption ) ( Router_SendPaymentV2Client , error ) {
stream , err := c . cc . NewStream ( ctx , & _Router_serviceDesc . Streams [ 0 ] , "/routerrpc.Router/SendPaymentV2" , opts ... )
2018-10-23 07:43:47 +03:00
if err != nil {
return nil , err
}
2020-04-13 11:07:53 +03:00
x := & routerSendPaymentV2Client { stream }
2019-03-22 12:21:25 +03:00
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
2020-04-13 11:07:53 +03:00
type Router_SendPaymentV2Client interface {
2020-04-03 18:05:05 +03:00
Recv ( ) ( * lnrpc . Payment , error )
2019-03-22 12:21:25 +03:00
grpc . ClientStream
}
2020-04-13 11:07:53 +03:00
type routerSendPaymentV2Client struct {
2019-03-22 12:21:25 +03:00
grpc . ClientStream
}
2020-04-13 11:07:53 +03:00
func ( x * routerSendPaymentV2Client ) Recv ( ) ( * lnrpc . Payment , error ) {
2020-04-03 18:05:05 +03:00
m := new ( lnrpc . Payment )
2019-03-22 12:21:25 +03:00
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
}
2020-04-13 11:07:53 +03:00
func ( c * routerClient ) TrackPaymentV2 ( ctx context . Context , in * TrackPaymentRequest , opts ... grpc . CallOption ) ( Router_TrackPaymentV2Client , error ) {
stream , err := c . cc . NewStream ( ctx , & _Router_serviceDesc . Streams [ 1 ] , "/routerrpc.Router/TrackPaymentV2" , opts ... )
2019-03-22 12:21:25 +03:00
if err != nil {
return nil , err
}
2020-04-13 11:07:53 +03:00
x := & routerTrackPaymentV2Client { stream }
2019-03-22 12:21:25 +03:00
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
2020-04-13 11:07:53 +03:00
type Router_TrackPaymentV2Client interface {
2020-04-03 18:05:05 +03:00
Recv ( ) ( * lnrpc . Payment , error )
2019-03-22 12:21:25 +03:00
grpc . ClientStream
}
2020-04-13 11:07:53 +03:00
type routerTrackPaymentV2Client struct {
2019-03-22 12:21:25 +03:00
grpc . ClientStream
}
2020-04-13 11:07:53 +03:00
func ( x * routerTrackPaymentV2Client ) Recv ( ) ( * lnrpc . Payment , error ) {
2020-04-03 18:05:05 +03:00
m := new ( lnrpc . Payment )
2019-03-22 12:21:25 +03:00
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
2018-10-23 07:43:47 +03:00
}
func ( c * routerClient ) EstimateRouteFee ( ctx context . Context , in * RouteFeeRequest , opts ... grpc . CallOption ) ( * RouteFeeResponse , error ) {
out := new ( RouteFeeResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/EstimateRouteFee" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2019-03-14 18:31:39 +03:00
func ( c * routerClient ) SendToRoute ( ctx context . Context , in * SendToRouteRequest , opts ... grpc . CallOption ) ( * SendToRouteResponse , error ) {
out := new ( SendToRouteResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/SendToRoute" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2019-05-10 19:00:15 +03:00
func ( c * routerClient ) ResetMissionControl ( ctx context . Context , in * ResetMissionControlRequest , opts ... grpc . CallOption ) ( * ResetMissionControlResponse , error ) {
out := new ( ResetMissionControlResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/ResetMissionControl" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2019-05-10 11:38:31 +03:00
func ( c * routerClient ) QueryMissionControl ( ctx context . Context , in * QueryMissionControlRequest , opts ... grpc . CallOption ) ( * QueryMissionControlResponse , error ) {
out := new ( QueryMissionControlResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/QueryMissionControl" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2019-09-27 12:43:12 +03:00
func ( c * routerClient ) QueryProbability ( ctx context . Context , in * QueryProbabilityRequest , opts ... grpc . CallOption ) ( * QueryProbabilityResponse , error ) {
out := new ( QueryProbabilityResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/QueryProbability" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2019-08-29 14:03:37 +03:00
func ( c * routerClient ) BuildRoute ( ctx context . Context , in * BuildRouteRequest , opts ... grpc . CallOption ) ( * BuildRouteResponse , error ) {
out := new ( BuildRouteResponse )
err := c . cc . Invoke ( ctx , "/routerrpc.Router/BuildRoute" , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2020-03-13 10:30:16 +03:00
func ( c * routerClient ) SubscribeHtlcEvents ( ctx context . Context , in * SubscribeHtlcEventsRequest , opts ... grpc . CallOption ) ( Router_SubscribeHtlcEventsClient , error ) {
stream , err := c . cc . NewStream ( ctx , & _Router_serviceDesc . Streams [ 2 ] , "/routerrpc.Router/SubscribeHtlcEvents" , opts ... )
if err != nil {
return nil , err
}
x := & routerSubscribeHtlcEventsClient { stream }
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
type Router_SubscribeHtlcEventsClient interface {
Recv ( ) ( * HtlcEvent , error )
grpc . ClientStream
}
type routerSubscribeHtlcEventsClient struct {
grpc . ClientStream
}
func ( x * routerSubscribeHtlcEventsClient ) Recv ( ) ( * HtlcEvent , error ) {
m := new ( HtlcEvent )
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
}
2020-04-13 13:16:55 +03:00
// Deprecated: Do not use.
func ( c * routerClient ) SendPayment ( ctx context . Context , in * SendPaymentRequest , opts ... grpc . CallOption ) ( Router_SendPaymentClient , error ) {
stream , err := c . cc . NewStream ( ctx , & _Router_serviceDesc . Streams [ 3 ] , "/routerrpc.Router/SendPayment" , opts ... )
if err != nil {
return nil , err
}
x := & routerSendPaymentClient { stream }
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
type Router_SendPaymentClient interface {
Recv ( ) ( * PaymentStatus , error )
grpc . ClientStream
}
type routerSendPaymentClient struct {
grpc . ClientStream
}
func ( x * routerSendPaymentClient ) Recv ( ) ( * PaymentStatus , error ) {
m := new ( PaymentStatus )
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
}
// Deprecated: Do not use.
func ( c * routerClient ) TrackPayment ( ctx context . Context , in * TrackPaymentRequest , opts ... grpc . CallOption ) ( Router_TrackPaymentClient , error ) {
stream , err := c . cc . NewStream ( ctx , & _Router_serviceDesc . Streams [ 4 ] , "/routerrpc.Router/TrackPayment" , opts ... )
if err != nil {
return nil , err
}
x := & routerTrackPaymentClient { stream }
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
type Router_TrackPaymentClient interface {
Recv ( ) ( * PaymentStatus , error )
grpc . ClientStream
}
type routerTrackPaymentClient struct {
grpc . ClientStream
}
func ( x * routerTrackPaymentClient ) Recv ( ) ( * PaymentStatus , error ) {
m := new ( PaymentStatus )
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
}
2018-10-23 07:43:47 +03:00
// RouterServer is the server API for Router service.
type RouterServer interface {
2020-05-06 17:51:14 +03:00
//
2020-04-13 11:07:53 +03:00
//SendPaymentV2 attempts to route a payment described by the passed
2019-03-22 12:21:25 +03:00
//PaymentRequest to the final destination. The call returns a stream of
2020-04-03 18:05:05 +03:00
//payment updates.
2020-04-13 11:07:53 +03:00
SendPaymentV2 ( * SendPaymentRequest , Router_SendPaymentV2Server ) error
2020-05-06 17:51:14 +03:00
//
2020-04-13 11:07:53 +03:00
//TrackPaymentV2 returns an update stream for the payment identified by the
2019-03-22 12:21:25 +03:00
//payment hash.
2020-04-13 11:07:53 +03:00
TrackPaymentV2 ( * TrackPaymentRequest , Router_TrackPaymentV2Server ) error
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//EstimateRouteFee allows callers to obtain a lower bound w.r.t how much it
//may cost to send an HTLC to the target end destination.
2018-10-23 07:43:47 +03:00
EstimateRouteFee ( context . Context , * RouteFeeRequest ) ( * RouteFeeResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-15 16:07:30 +03:00
//SendToRoute attempts to make a payment via the specified route. This method
//differs from SendPayment in that it allows users to specify a full route
//manually. This can be used for things like rebalancing, and atomic swaps.
2019-03-14 18:31:39 +03:00
SendToRoute ( context . Context , * SendToRouteRequest ) ( * SendToRouteResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-10 19:00:15 +03:00
//ResetMissionControl clears all mission control state and starts with a clean
//slate.
ResetMissionControl ( context . Context , * ResetMissionControlRequest ) ( * ResetMissionControlResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-05-10 11:38:31 +03:00
//QueryMissionControl exposes the internal mission control state to callers.
//It is a development feature.
QueryMissionControl ( context . Context , * QueryMissionControlRequest ) ( * QueryMissionControlResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-09-27 12:43:12 +03:00
//QueryProbability returns the current success probability estimate for a
//given node pair and amount.
QueryProbability ( context . Context , * QueryProbabilityRequest ) ( * QueryProbabilityResponse , error )
2020-05-06 17:51:14 +03:00
//
2019-08-29 14:03:37 +03:00
//BuildRoute builds a fully specified route based on a list of hop public
//keys. It retrieves the relevant channel policies from the graph in order to
//calculate the correct fees and time locks.
BuildRoute ( context . Context , * BuildRouteRequest ) ( * BuildRouteResponse , error )
2020-05-06 17:51:14 +03:00
//
2020-03-13 10:30:16 +03:00
//SubscribeHtlcEvents creates a uni-directional stream from the server to
//the client which delivers a stream of htlc events.
SubscribeHtlcEvents ( * SubscribeHtlcEventsRequest , Router_SubscribeHtlcEventsServer ) error
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Deprecated, use SendPaymentV2. SendPayment attempts to route a payment
//described by the passed PaymentRequest to the final destination. The call
//returns a stream of payment status updates.
SendPayment ( * SendPaymentRequest , Router_SendPaymentServer ) error
2020-05-06 17:51:14 +03:00
//
2020-04-13 13:16:55 +03:00
//Deprecated, use TrackPaymentV2. TrackPayment returns an update stream for
//the payment identified by the payment hash.
TrackPayment ( * TrackPaymentRequest , Router_TrackPaymentServer ) error
2018-10-23 07:43:47 +03:00
}
func RegisterRouterServer ( s * grpc . Server , srv RouterServer ) {
s . RegisterService ( & _Router_serviceDesc , srv )
}
2020-04-13 11:07:53 +03:00
func _Router_SendPaymentV2_Handler ( srv interface { } , stream grpc . ServerStream ) error {
2019-03-22 12:21:25 +03:00
m := new ( SendPaymentRequest )
if err := stream . RecvMsg ( m ) ; err != nil {
return err
2018-10-23 07:43:47 +03:00
}
2020-04-13 11:07:53 +03:00
return srv . ( RouterServer ) . SendPaymentV2 ( m , & routerSendPaymentV2Server { stream } )
2019-03-22 12:21:25 +03:00
}
2020-04-13 11:07:53 +03:00
type Router_SendPaymentV2Server interface {
2020-04-03 18:05:05 +03:00
Send ( * lnrpc . Payment ) error
2019-03-22 12:21:25 +03:00
grpc . ServerStream
}
2020-04-13 11:07:53 +03:00
type routerSendPaymentV2Server struct {
2019-03-22 12:21:25 +03:00
grpc . ServerStream
}
2020-04-13 11:07:53 +03:00
func ( x * routerSendPaymentV2Server ) Send ( m * lnrpc . Payment ) error {
2019-03-22 12:21:25 +03:00
return x . ServerStream . SendMsg ( m )
}
2020-04-13 11:07:53 +03:00
func _Router_TrackPaymentV2_Handler ( srv interface { } , stream grpc . ServerStream ) error {
2019-03-22 12:21:25 +03:00
m := new ( TrackPaymentRequest )
if err := stream . RecvMsg ( m ) ; err != nil {
return err
2018-10-23 07:43:47 +03:00
}
2020-04-13 11:07:53 +03:00
return srv . ( RouterServer ) . TrackPaymentV2 ( m , & routerTrackPaymentV2Server { stream } )
2019-03-22 12:21:25 +03:00
}
2020-04-13 11:07:53 +03:00
type Router_TrackPaymentV2Server interface {
2020-04-03 18:05:05 +03:00
Send ( * lnrpc . Payment ) error
2019-03-22 12:21:25 +03:00
grpc . ServerStream
}
2020-04-13 11:07:53 +03:00
type routerTrackPaymentV2Server struct {
2019-03-22 12:21:25 +03:00
grpc . ServerStream
}
2020-04-13 11:07:53 +03:00
func ( x * routerTrackPaymentV2Server ) Send ( m * lnrpc . Payment ) error {
2019-03-22 12:21:25 +03:00
return x . ServerStream . SendMsg ( m )
2018-10-23 07:43:47 +03:00
}
func _Router_EstimateRouteFee_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( RouteFeeRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . EstimateRouteFee ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/EstimateRouteFee" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . EstimateRouteFee ( ctx , req . ( * RouteFeeRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2019-03-14 18:31:39 +03:00
func _Router_SendToRoute_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( SendToRouteRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . SendToRoute ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/SendToRoute" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . SendToRoute ( ctx , req . ( * SendToRouteRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2019-05-10 19:00:15 +03:00
func _Router_ResetMissionControl_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ResetMissionControlRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . ResetMissionControl ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/ResetMissionControl" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . ResetMissionControl ( ctx , req . ( * ResetMissionControlRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2019-05-10 11:38:31 +03:00
func _Router_QueryMissionControl_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( QueryMissionControlRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . QueryMissionControl ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/QueryMissionControl" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . QueryMissionControl ( ctx , req . ( * QueryMissionControlRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2019-09-27 12:43:12 +03:00
func _Router_QueryProbability_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( QueryProbabilityRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . QueryProbability ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/QueryProbability" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . QueryProbability ( ctx , req . ( * QueryProbabilityRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2019-08-29 14:03:37 +03:00
func _Router_BuildRoute_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( BuildRouteRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( RouterServer ) . BuildRoute ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/routerrpc.Router/BuildRoute" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( RouterServer ) . BuildRoute ( ctx , req . ( * BuildRouteRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2020-03-13 10:30:16 +03:00
func _Router_SubscribeHtlcEvents_Handler ( srv interface { } , stream grpc . ServerStream ) error {
m := new ( SubscribeHtlcEventsRequest )
if err := stream . RecvMsg ( m ) ; err != nil {
return err
}
return srv . ( RouterServer ) . SubscribeHtlcEvents ( m , & routerSubscribeHtlcEventsServer { stream } )
}
type Router_SubscribeHtlcEventsServer interface {
Send ( * HtlcEvent ) error
grpc . ServerStream
}
type routerSubscribeHtlcEventsServer struct {
grpc . ServerStream
}
func ( x * routerSubscribeHtlcEventsServer ) Send ( m * HtlcEvent ) error {
return x . ServerStream . SendMsg ( m )
}
2020-04-13 13:16:55 +03:00
func _Router_SendPayment_Handler ( srv interface { } , stream grpc . ServerStream ) error {
m := new ( SendPaymentRequest )
if err := stream . RecvMsg ( m ) ; err != nil {
return err
}
return srv . ( RouterServer ) . SendPayment ( m , & routerSendPaymentServer { stream } )
}
type Router_SendPaymentServer interface {
Send ( * PaymentStatus ) error
grpc . ServerStream
}
type routerSendPaymentServer struct {
grpc . ServerStream
}
func ( x * routerSendPaymentServer ) Send ( m * PaymentStatus ) error {
return x . ServerStream . SendMsg ( m )
}
func _Router_TrackPayment_Handler ( srv interface { } , stream grpc . ServerStream ) error {
m := new ( TrackPaymentRequest )
if err := stream . RecvMsg ( m ) ; err != nil {
return err
}
return srv . ( RouterServer ) . TrackPayment ( m , & routerTrackPaymentServer { stream } )
}
type Router_TrackPaymentServer interface {
Send ( * PaymentStatus ) error
grpc . ServerStream
}
type routerTrackPaymentServer struct {
grpc . ServerStream
}
func ( x * routerTrackPaymentServer ) Send ( m * PaymentStatus ) error {
return x . ServerStream . SendMsg ( m )
}
2018-10-23 07:43:47 +03:00
var _Router_serviceDesc = grpc . ServiceDesc {
ServiceName : "routerrpc.Router" ,
HandlerType : ( * RouterServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "EstimateRouteFee" ,
Handler : _Router_EstimateRouteFee_Handler ,
} ,
2019-03-14 18:31:39 +03:00
{
MethodName : "SendToRoute" ,
Handler : _Router_SendToRoute_Handler ,
} ,
2019-05-10 19:00:15 +03:00
{
MethodName : "ResetMissionControl" ,
Handler : _Router_ResetMissionControl_Handler ,
} ,
2019-05-10 11:38:31 +03:00
{
MethodName : "QueryMissionControl" ,
Handler : _Router_QueryMissionControl_Handler ,
} ,
2019-09-27 12:43:12 +03:00
{
MethodName : "QueryProbability" ,
Handler : _Router_QueryProbability_Handler ,
} ,
2019-08-29 14:03:37 +03:00
{
MethodName : "BuildRoute" ,
Handler : _Router_BuildRoute_Handler ,
} ,
2018-10-23 07:43:47 +03:00
} ,
2019-03-22 12:21:25 +03:00
Streams : [ ] grpc . StreamDesc {
{
2020-04-13 11:07:53 +03:00
StreamName : "SendPaymentV2" ,
Handler : _Router_SendPaymentV2_Handler ,
2019-03-22 12:21:25 +03:00
ServerStreams : true ,
} ,
{
2020-04-13 11:07:53 +03:00
StreamName : "TrackPaymentV2" ,
Handler : _Router_TrackPaymentV2_Handler ,
2019-03-22 12:21:25 +03:00
ServerStreams : true ,
} ,
2020-03-13 10:30:16 +03:00
{
StreamName : "SubscribeHtlcEvents" ,
Handler : _Router_SubscribeHtlcEvents_Handler ,
ServerStreams : true ,
} ,
2020-04-13 13:16:55 +03:00
{
StreamName : "SendPayment" ,
Handler : _Router_SendPayment_Handler ,
ServerStreams : true ,
} ,
{
StreamName : "TrackPayment" ,
Handler : _Router_TrackPayment_Handler ,
ServerStreams : true ,
} ,
2019-03-22 12:21:25 +03:00
} ,
2018-10-23 07:43:47 +03:00
Metadata : "routerrpc/router.proto" ,
}