Skip to content
Snippets Groups Projects
Commit 7d5870c4 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

Small fix

parent 93aed33c
No related branches found
No related tags found
No related merge requests found
...@@ -623,12 +623,11 @@ class Account(BlockchainObject): ...@@ -623,12 +623,11 @@ class Account(BlockchainObject):
:param int days: limit number of days to be included int the return value :param int days: limit number of days to be included int the return value
""" """
timedelta(days=days)
utc = pytz.timezone('UTC') utc = pytz.timezone('UTC')
stop = utc.localize(datetime.utcnow()) - timedelta(days=days) stop = utc.localize(datetime.utcnow()) - timedelta(days=days)
reward_vests = Amount("0 VESTS") reward_vests = Amount("0 VESTS", steem_instance=self.steem)
for reward in self.history_reverse(stop=stop, only_ops=["curation_reward"]): for reward in self.history_reverse(stop=stop, only_ops=["curation_reward"]):
reward_vests += Amount(reward['reward']) reward_vests += Amount(reward['reward'], steem_instance=self.steem)
return self.steem.vests_to_sp(reward_vests.amount) return self.steem.vests_to_sp(reward_vests.amount)
def curation_stats(self): def curation_stats(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment