Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Merged
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
5 changes: 5 additions & 0 deletions core/chain_indexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ func TestChainIndexerSingle(t *testing.T) {

// Runs multiple tests with randomized parameters and different number of
// chain backends.
//
// This test and all its code is unedited from go-ethereum. Since coreth forked
// go-ethereum, no relevant fixes were made, besides replacing the ChainIndexer's
// functionality with a different structure.
func TestChainIndexerWithChildren(t *testing.T) {
t.Skip("Flaky test from go-ethereum")
for i := 2; i < 8; i++ {
testChainIndexer(t, i)
}
Expand Down
Loading