diff --git a/chainntnfs/interface_test.go b/chainntnfs/interface_test.go index 9953fba7..dec608a1 100644 --- a/chainntnfs/interface_test.go +++ b/chainntnfs/interface_test.go @@ -1567,6 +1567,13 @@ func testCatchUpOnMissedBlocks(miner *rpctest.Harness, func testCatchUpOnMissedBlocksWithReorg(miner1 *rpctest.Harness, notifier chainntnfs.TestChainNotifier, t *testing.T) { + // If this is the neutrino notifier, then we'll skip this test for now + // as we're missing functionality required to ensure the test passes + // reliably. + if _, ok := notifier.(*neutrinonotify.NeutrinoNotifier); ok { + t.Skip("skipping re-org test for neutrino") + } + const numBlocks = 10 const numClients = 5 var wg sync.WaitGroup