Skip to content

Commit

Permalink
Fixbug/Backfill_price_for_wrong_eth_token_0x000
Browse files Browse the repository at this point in the history
  • Loading branch information
Haiss2 committed Sep 12, 2024
1 parent 7ec5b7a commit dbb4abd
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
UPDATE tradelogs
SET state = 'new'
WHERE
(
(maker_token = '0x0000000000000000000000000000000000000000' AND maker_token_price = 0) OR
(taker_token = '0x0000000000000000000000000000000000000000' AND taker_token_price = 0)
)
AND state = 'processed';

0 comments on commit dbb4abd

Please sign in to comment.