Skip to content

Commit

Permalink
refactor: make a trivial change to use fresh cache in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine committed Jan 17, 2025
1 parent eb47f0a commit 138dd63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eth/rpc/backend/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ func ShouldIgnoreGasUsed(res *abci.ResponseDeliverTx) bool {
}

// GetLogsFromBlockResults returns the list of event logs from the tendermint block result response
func GetLogsFromBlockResults(blockRes *tmrpctypes.ResultBlockResults) ([][]*gethcore.Log, error) {
func GetLogsFromBlockResults(
blockRes *tmrpctypes.ResultBlockResults,
) ([][]*gethcore.Log, error) {
blockLogs := [][]*gethcore.Log{}
for _, txResult := range blockRes.TxsResults {
logs, err := AllTxLogsFromEvents(txResult.Events)
Expand Down

0 comments on commit 138dd63

Please sign in to comment.