diff --git a/node/impl/full/eth_events.go b/node/impl/full/eth_events.go index 81ecef64b..063590d8d 100644 --- a/node/impl/full/eth_events.go +++ b/node/impl/full/eth_events.go @@ -121,6 +121,10 @@ func ethFilterResultFromEvents(ctx context.Context, evs []*filter.CollectedEvent if err != nil { return nil, err } + if log.TransactionHash == ethtypes.EmptyEthHash { + // We've garbage collected the message, ignore the events and continue. + continue + } c, err := ev.TipSetKey.Cid() if err != nil { return nil, err