From 77e00278e49a561d041d6835aae6126acc1e54ce Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Tue, 26 Sep 2023 02:50:18 +0800 Subject: [PATCH] fix test --- indexer/ipld/eth_parser_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/ipld/eth_parser_test.go b/indexer/ipld/eth_parser_test.go index fd44058..8deb260 100644 --- a/indexer/ipld/eth_parser_test.go +++ b/indexer/ipld/eth_parser_test.go @@ -92,7 +92,7 @@ func loadBlockData(t *testing.T) []testCase { func TestFromBlockAndReceipts(t *testing.T) { testCases := loadBlockData(t) for _, tc := range testCases { - _, _, _, _, err := FromBlockAndReceipts(tc.block, tc.receipts) + _, _, _, err := FromBlockAndReceipts(tc.block, tc.receipts) if err != nil { t.Fatalf("error generating IPLDs from block and receipts, err %v, kind %s, block hash %s", err, tc.kind, tc.block.Hash()) }