Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions steem/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ def is_comment(self):
return self['depth'] > 0

def curation_reward_pct(self):
""" If post is less than 30 minutes old, it will incur a curation
""" If post is less than 15 minutes old, it will incur a curation
reward penalty. """
reward = (self.time_elapsed().seconds / 1800) * 100
reward = (self.time_elapsed().seconds / 900) * 100
if reward > 100:
reward = 100
return reward
Expand Down