Skip to content

Commit d27c9fd

Browse files
committed
change return for EffectiveGas=0 to continue
1 parent 38418af commit d27c9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evmrpc/filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ func (f *LogFetcher) FindLogsByBloom(height int64, filters [][]bloomIndexes) (re
370370
continue
371371
}
372372
if !f.includeSyntheticReceipts && receipt.EffectiveGasPrice == 0 {
373-
return
373+
continue
374374
}
375375
if len(receipt.LogsBloom) > 0 && MatchFilters(ethtypes.Bloom(receipt.LogsBloom), filters) {
376376
res = append(res, keeper.GetLogsForTx(receipt)...)

0 commit comments

Comments
 (0)