From 29157fe02aad5feab8b0a1bdde654816c2178aa7 Mon Sep 17 00:00:00 2001 From: de6df1re Date: Fri, 23 Jul 2021 09:20:28 -0500 Subject: [PATCH 1/2] itest: fix payment test --- lntest/itest/lnd_payment_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lntest/itest/lnd_payment_test.go b/lntest/itest/lnd_payment_test.go index 45455285..62796e3d 100644 --- a/lntest/itest/lnd_payment_test.go +++ b/lntest/itest/lnd_payment_test.go @@ -156,7 +156,7 @@ func testListPayments(net *lntest.NetworkHarness, t *harnessTest) { } if len(paymentsResp.Payments) != 0 { t.Fatalf("incorrect number of payments, got %v, want %v", - len(paymentsRespInit.Payments), 0) + len(paymentsResp.Payments), 0) } closeChannelAndAssert(t, net, net.Alice, chanPoint, false) From 6348da15878e5046f8be7a8cf5d7ae161398c4f3 Mon Sep 17 00:00:00 2001 From: de6df1re Date: Thu, 19 Aug 2021 20:00:42 -0500 Subject: [PATCH 2/2] docs: update release note --- docs/release-notes/release-notes-0.14.0.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/release-notes-0.14.0.md b/docs/release-notes/release-notes-0.14.0.md index 4cf56111..7780ca82 100644 --- a/docs/release-notes/release-notes-0.14.0.md +++ b/docs/release-notes/release-notes-0.14.0.md @@ -105,6 +105,8 @@ you. * [Fixed typo in `dest_custom_records` description comment](https://github.com/lightningnetwork/lnd/pull/5541). +* [Fixed payment test error message.](https://github.com/lightningnetwork/lnd/pull/5559) + * [Bumped version of `github.com/miekg/dns` library to fix a Dependabot alert](https://github.com/lightningnetwork/lnd/pull/5576). @@ -162,10 +164,11 @@ change](https://github.com/lightningnetwork/lnd/pull/5613). # Contributors (Alphabetical Order) * Andras Banki-Horvath +* de6df1re * ErikEk * Eugene Siegel * Martin Habovstiak -* Zero-1729 * Oliver Gugger * xanoni * Yong Yu +* Zero-1729