From eca43604828c30c3b3112f7034583eb4b588fa46 Mon Sep 17 00:00:00 2001 From: Nguyen Thuy Linh Date: Mon, 13 Jan 2025 14:25:34 +0700 Subject: [PATCH] fix: cannot retry 0xv3 trade logs (#119) --- internal/worker/worker.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/worker/worker.go b/internal/worker/worker.go index 09d91f2..4eea600 100644 --- a/internal/worker/worker.go +++ b/internal/worker/worker.go @@ -172,9 +172,6 @@ func (w *Worker) retryParseLog() error { for _, l := range logs { topics := strings.Split(l.Topics, ",") - if len(topics) == 0 { - continue - } ethLog := convert.ToETHLog(types.Log{ Address: l.Address, Topics: topics,