Skip to content

Commit

Permalink
Correct field name
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed May 22, 2024
1 parent 356d922 commit 28d6c85
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(amm_buy.pricePaid, '0')::bigint
COALESCE(amm_buy.price_paid, '0')::bigint
) AS "total_crt_volume",
SUM(
COALESCE(event.data->>'price', '0')::bigint + COALESCE(winning_bid.amount, 0)
Expand Down

0 comments on commit 28d6c85

Please sign in to comment.