Traceback (most recent call last):
File "a.py", line 36, in <module>
test = Committee("1.5.10", False)
File "/home/user/python-bitshares/bitshares/blockchainobject.py", line 101, in __init__
self.refresh()
File "/home/user/python-bitshares/bitshares/committee.py", line 40, in refresh
self.account_id = account["id"]
UnboundLocalError: local variable 'account' referenced before assignment
test = Committee("1.5.10", False)
print(test)
for a in test:
print(a)
Am I using the committee function incorrectly?
I was just testing it out:
Referenced section of python-bitshares code: https://github.com/bitshares/python-bitshares/blob/master/bitshares/committee.py#L40