Skip to content

Commit

Permalink
Fixed previous fix by ensuring we do not tweak the state in serial ex…
Browse files Browse the repository at this point in the history
…ecution
  • Loading branch information
maoueh committed Aug 9, 2024
1 parent 5b43a0b commit 80e74b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/evm/tracers/firehose.go
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,9 @@ func (f *Firehose) OnSeiPostTxCosmosEvents(event seitracing.SeiPostTxCosmosEvent
}
transaction.Receipt.Logs = append(transaction.Receipt.Logs, firehoseLog)

f.transactionLogIndex += 1
if f.transactionIsolated {
f.transactionLogIndex += 1
}
}

transaction.Receipt.LogsBloom = event.NewReceipt.LogsBloom
Expand Down

0 comments on commit 80e74b4

Please sign in to comment.