Skip to content
Snippets Groups Projects
Unverified Commit d5b4dc9d authored by Daniel's avatar Daniel Committed by GitHub
Browse files

Change to fix Issue #4

parent 167873a9
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ class Comment(BlockchainObject):
vote_weight = int(weight * STEEMIT_1_PERCENT)
if 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
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