diff --git a/lntest/itest/lnd_routing_test.go b/lntest/itest/lnd_routing_test.go index afc6648358..7458338b47 100644 --- a/lntest/itest/lnd_routing_test.go +++ b/lntest/itest/lnd_routing_test.go @@ -732,7 +732,7 @@ func testSendToRouteErrorPropagation(net *lntest.NetworkHarness, t *harnessTest) // Using Alice as the source, pay to the 5 invoices from Bob created above. ctxt, _ = context.WithTimeout(ctxb, defaultTimeout) - alicePayStream, err := net.Alice.SendToRoute(ctxt) + alicePayStream, err := net.Alice.SendToRoute(ctxt) // nolint:staticcheck if err != nil { t.Fatalf("unable to create payment stream for alice: %v", err) } diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index 91de4ff24c..c7016e98ca 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -5575,7 +5575,7 @@ func testInvoiceSubscriptions(net *lntest.NetworkHarness, t *harnessTest) { // The invoice update should exactly match the invoice created // above, but should now be settled and have SettleDate - if !invoiceUpdate.Settled { + if !invoiceUpdate.Settled { // nolint:staticcheck t.Fatalf("invoice not settled but should be") } if invoiceUpdate.SettleDate == 0 { @@ -5673,7 +5673,7 @@ func testInvoiceSubscriptions(net *lntest.NetworkHarness, t *harnessTest) { // We should now get the ith invoice we added, as they should // be returned in order. - if invoiceUpdate.Settled { + if invoiceUpdate.Settled { // nolint:staticcheck t.Fatalf("should have only received add events") } originalInvoice := newInvoices[i] @@ -5728,7 +5728,7 @@ func testInvoiceSubscriptions(net *lntest.NetworkHarness, t *harnessTest) { // We should now get the ith invoice we added, as they should // be returned in order. - if !invoiceUpdate.Settled { + if !invoiceUpdate.Settled { // nolint:staticcheck t.Fatalf("should have only received settle events") } @@ -9190,7 +9190,7 @@ func testNodeAnnouncement(net *lntest.NetworkHarness, t *harnessTest) { for _, update := range graphUpdate.NodeUpdates { if update.IdentityKey == nodePubKey { assertAddrs( - update.Addresses, + update.Addresses, // nolint:staticcheck targetAddrs..., ) return