Skip to content

Commit 68f2bc1

Browse files
committed
minor logging fix
1 parent 3fad532 commit 68f2bc1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internal/libs/clickhouse.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,14 +243,12 @@ func GetBlockDataFromClickHouseV2(chainId uint64, startBlockNumber uint64, endBl
243243
if blocksRaw[i].TransactionCount != uint64(len(transactionsRaw[i])) {
244244
log.Info().
245245
Any("transactionCount", blocksRaw[i].TransactionCount).
246-
Any("transactionsRaw", transactionsRaw[i]).
247246
Msg("skipping block because transactionCount does not match")
248247
continue
249248
}
250249
if (blocksRaw[i].LogsBloom != "" && blocksRaw[i].LogsBloom != EMPTY_LOGS_BLOOM) && len(logsRaw[i]) == 0 {
251250
log.Info().
252251
Any("logsBloom", blocksRaw[i].LogsBloom).
253-
Any("logsRaw", logsRaw[i]).
254252
Msg("skipping block because logsBloom is not empty and logsRaw is empty")
255253
continue
256254
}

0 commit comments

Comments
 (0)