Skip to content

Commit

Permalink
CR fix v1
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed May 17, 2024
1 parent 9eef55e commit 356d922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server-extension/resolvers/StateResolver/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class StateResolver {
COALESCE(event.data->>'amount', '0')::bigint
) AS "total_rewards_volume",
SUM(
COALESCE(event.data->>'pricePaid', '0')::bigint
COALESCE(amm_buy.pricePaid, '0')::bigint
) AS "total_crt_volume",
SUM(
COALESCE(event.data->>'price', '0')::bigint + COALESCE(winning_bid.amount, 0)
Expand Down

0 comments on commit 356d922

Please sign in to comment.