Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Placate the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jalextowle committed Jul 23, 2020
1 parent ce1bea6 commit c033971
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion zeroex/orderwatch/order_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,11 @@ func (w *Watcher) RevalidateOrdersForMissingEvents(ctx context.Context) error {
if err != nil {
return err
}
w.generateOrderEventsIfChanged(ctx, orderHashToDBOrder, orderHashToEvents, latestMiniHeader)
orderEvents, err := w.generateOrderEventsIfChanged(ctx, orderHashToDBOrder, orderHashToEvents, latestMiniHeader)
if err != nil {
return err
}
w.orderFeed.Send(orderEvents)
return nil
}

Expand Down

0 comments on commit c033971

Please sign in to comment.