In BitShares().create_asset(), at
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.
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.