Skip to content
Snippets Groups Projects
Unverified Commit bf60b74c authored by Holger Nahrstaedt's avatar Holger Nahrstaedt Committed by GitHub
Browse files

Merge pull request #5 from E-D-A/patch-1

Change to fix Issue #4
parents 8cc6342d d5b4dc9d
No related branches found
No related tags found
No related merge requests found
...@@ -284,7 +284,7 @@ class Comment(BlockchainObject): ...@@ -284,7 +284,7 @@ class Comment(BlockchainObject):
vote_weight = int(weight * STEEMIT_1_PERCENT) vote_weight = int(weight * STEEMIT_1_PERCENT)
if vote_weight > STEEMIT_100_PERCENT: if vote_weight > STEEMIT_100_PERCENT:
vote_weight = STEEMIT_100_PERCENT vote_weight = STEEMIT_100_PERCENT
if vote_weight < STEEMIT_100_PERCENT: if vote_weight < -STEEMIT_100_PERCENT:
vote_weight = -STEEMIT_100_PERCENT vote_weight = -STEEMIT_100_PERCENT
op = operations.Vote( op = operations.Vote(
......
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