Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for AMP and zero amount invoices #116

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PKG := github.com/lightninglabs/lndclient
PKG := github.com/thomasbarrett/lndclient

LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/lightninglabs/lndclient
module github.com/thomasbarrett/lndclient

require (
github.com/btcsuite/btcd v0.22.0-beta.0.20211005184431-e3449998be39
Expand Down
1 change: 1 addition & 0 deletions lightning_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,7 @@ func (s *lightningClient) AddInvoice(ctx context.Context,
Expiry: in.Expiry,
CltvExpiry: in.CltvExpiry,
Private: true,
IsAmp: in.Amp,
}

if in.Preimage != nil {
Expand Down
2 changes: 1 addition & 1 deletion macaroon_recipes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"io/ioutil"
"testing"

"github.com/lightninglabs/lndclient"
"github.com/stretchr/testify/require"
"github.com/thomasbarrett/lndclient"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion router_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ func (r *routerClient) SendPayment(ctx context.Context,
MaxParts: request.MaxParts,
OutgoingChanIds: request.OutgoingChanIds,
AllowSelfPayment: request.AllowSelfPayment,
Amt: int64(request.Amount),
}
if request.MaxCltv != nil {
rpcReq.CltvLimit = *request.MaxCltv
Expand Down Expand Up @@ -415,7 +416,6 @@ func (r *routerClient) SendPayment(ctx context.Context,
// payment parameters.
if request.Invoice == "" {
rpcReq.Dest = request.Target[:]
rpcReq.Amt = int64(request.Amount)
rpcReq.PaymentHash = request.PaymentHash[:]
rpcReq.FinalCltvDelta = int32(request.FinalCLTVDelta)

Expand Down