Skip to content
Snippets Groups Projects
Unverified Commit d86ff57d authored by Flug Schwein's avatar Flug Schwein Committed by GitHub
Browse files

Add missing parameter docu to sbd_to_rshares

parent a6995a44
No related branches found
No related tags found
No related merge requests found
...@@ -576,9 +576,12 @@ class Steem(object): ...@@ -576,9 +576,12 @@ class Steem(object):
""" Obtain the r-shares from SBD """ Obtain the r-shares from SBD
:param str/int/Amount sbd: SBD :param str/int/Amount sbd: SBD
:param bool not_broadcasted_vote: value of a not_broadcasted or already broadcasted vote (True = not_broadcasted vote).
Only impactful for very high amounts of SBD. Slight modification to the value calculation, as the not_broadcasted
vote rshares decreases the reward pool.
:param int precision_iterations: This is needed for making the calculation more precise. :param int precision_iterations: This is needed for making the calculation more precise.
The higher the number, the bigger the computational effort needed. It gets automatically adjusted The higher the number, the bigger the computational effort needed. It gets automatically adjusted
normally. normally. Only needed if not_broadcasted_vote = True
""" """
if isinstance(sbd, Amount): if isinstance(sbd, Amount):
......
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