We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d728d1 commit c214a90Copy full SHA for c214a90
packages/fasset-indexer-core/src/indexer/indexer.ts
@@ -63,8 +63,6 @@ export class EventIndexer {
63
64
protected async storeLogs(logs: Log[]): Promise<void> {
65
for (const log of logs) {
66
- if (log.index > 0) break
67
- console.log(log)
68
const fullLog = await this.eventParser.logToEvent(log)
69
if (fullLog != null) {
70
logger.info(`event indexer is processing event ${fullLog.name} (block: ${fullLog.blockNumber}, index: ${fullLog.logIndex})`)
0 commit comments