Skip to content

Commit e01293e

Browse files
committed
update
1 parent bd3f451 commit e01293e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethreceipts/ethreceipts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ func (l *ReceiptsListener) queryFilterOnChain(ctx context.Context, subscriber *s
897897
}
898898
} else if item.fetchFunc != nil {
899899
r, err = item.fetchFunc(gctx)
900-
if err != nil {
900+
if !errors.Is(err, ethereum.NotFound) && err != nil {
901901
l.log.Warn(fmt.Sprintf("queryFilterOnChain by fetchFunc fetchTransactionReceipt failed: %v", err))
902902
// Don't return error, just log and continue with other filters
903903
return nil

0 commit comments

Comments
 (0)