We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In BitShares().create_asset(), at
python-bitshares/bitshares/bitshares.py
Line 1300 in baf7f1e
if not max_market_fee: max_market_fee = max_supply
Should probably be:
if max_market_fee is None: max_market_fee = max_supply
Because if I pass in max_market_fee=0, the existing conditional evaluates true and overrides my explicit zero.
The text was updated successfully, but these errors were encountered:
Feel free to make a pull request :D
Sorry, something went wrong.
fix: #303
0eedb6d
No branches or pull requests
In BitShares().create_asset(), at
python-bitshares/bitshares/bitshares.py
Line 1300 in baf7f1e
Should probably be:
Because if I pass in max_market_fee=0, the existing conditional evaluates true and overrides my explicit zero.
The text was updated successfully, but these errors were encountered: