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
Here is a bug. If you request balance via Asset class or Asset.symbol, all is ok, but when request it via "1.3.id" always returns 0
>>from bitshares.account import Account >>from bitshares.asset import Asset >>account = Account('xeroc') >>account.balance('BTS') == account.balance('1.3.0') False >>account.balance('BTS') 637.83586 BTS >>account.balance('1.3.0') 0.00000 BTS
Also this
>>asset = Asset('BTS') >>account.balance(asset) == account.balance(asset.identifier) False >>account.balance(asset) 637.83586 BTS >>account.balance(asset.identifier) 0.00000 BTS >>account.balance('1.3.0') == 0 True
The text was updated successfully, but these errors were encountered:
fixed in python-graphenelib
Sorry, something went wrong.
Fix bitshares/python-bitshares#275
0a39d8e
xeroc/python-graphenelib@eee916e
No branches or pull requests
Here is a bug. If you request balance via Asset class or Asset.symbol, all is ok, but when request it via "1.3.id" always returns 0
Also this
The text was updated successfully, but these errors were encountered: