Skip to content

Commit

Permalink
switched source for num contributors and amount contributed (#7599)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankchen07 authored Oct 4, 2020
1 parent 1180cec commit 2d5c146
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/grants/management/commands/analytics_clr.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def analytics_clr(from_date=None, clr_round=None, network='mainnet'):
v_threshold,
uv_threshold
)
debug_output.append([grant.id, grant.title, num_contribs, contrib_amount, clr_amount])
# debug_output.append([grant.id, grant.title, num_contribs, contrib_amount, clr_amount])
debug_output.append([grant.id, grant.title, grant.positive_round_contributor_count, float(grant.amount_received_in_round), clr_amount])

return debug_output

Expand Down

0 comments on commit 2d5c146

Please sign in to comment.