diff --git a/itest/lnd_forward_interceptor_test.go b/itest/lnd_forward_interceptor_test.go index 00050cec6..972556fc3 100644 --- a/itest/lnd_forward_interceptor_test.go +++ b/itest/lnd_forward_interceptor_test.go @@ -587,6 +587,10 @@ type interceptorTestScenario struct { func newInterceptorTestScenario( ht *lntest.HarnessTest) *interceptorTestScenario { + if isLitd { + ht.Skipf("skipping forward interceptor tests for litd") + } + alice, bob := ht.Alice, ht.Bob carol := ht.NewNode("carol", nil) dave := ht.NewNode("dave", nil) diff --git a/itest/lnd_invoice_acceptor_test.go b/itest/lnd_invoice_acceptor_test.go index efd7f0df7..c2a3af1b4 100644 --- a/itest/lnd_invoice_acceptor_test.go +++ b/itest/lnd_invoice_acceptor_test.go @@ -17,6 +17,10 @@ import ( // testInvoiceHtlcModifierBasic tests the basic functionality of the invoice // HTLC modifier RPC server. func testInvoiceHtlcModifierBasic(ht *lntest.HarnessTest) { + if isLitd { + ht.Skipf("skipping HTLC modifier tests for litd") + } + ts := newAcceptorTestScenario(ht) alice, bob, carol := ts.alice, ts.bob, ts.carol