Skip to content

Commit

Permalink
fix (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinFlipside authored Apr 2, 2024
1 parent d86fa16 commit 35dc08e
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,14 @@ SELECT
origin_to_address,
A.contract_address AS contract_address,
sender_address,
amount0_unadj,
amount1_unadj,
IFNULL(
amount0_unadj,
0
) AS amount0_unadj,
IFNULL(
amount1_unadj,
0
) AS amount1_unadj,
lp_action,
lp_token_action,
function_type,
Expand Down

0 comments on commit 35dc08e

Please sign in to comment.