Skip to content

Commit

Permalink
activity_report: Show bounty value at the time of the web3_created.
Browse files Browse the repository at this point in the history
As required by bounty requirements.

Issue: gitcoinco#693
  • Loading branch information
cryptomental authored and Przemyslaw Szulczynski committed Apr 10, 2018
1 parent 41deda6 commit 819510f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dashboard/management/commands/activity_report.py
Expand Up @@ -92,7 +92,7 @@ def format_bounty(self, bounty):
'amount': bounty.get_natural_value(),
'denomination': bounty.token_name,
'amount_eth': bounty.value_in_eth / 10**18 if bounty.value_in_eth else None,
'amount_usdt': bounty.value_in_usdt_now,
'amount_usdt': bounty.value_in_usdt,
'from_address': bounty.bounty_owner_address,
'claimee_address': claimee_address,
'repo': self.extract_github_repo(bounty.github_url),
Expand Down

0 comments on commit 819510f

Please sign in to comment.