bitshares / uptick

Python-based CLI tool set for BitShares blockchain
MIT License
42 stars 27 forks source link

Uptick 0.1.9 error when using with python-bitshares 0.2.0 #13

Closed joelvai closed 5 years ago

joelvai commented 5 years ago

I get this error when trying to use uptick --help:

from bitshares.storage import configStorage as config ImportError: cannot import name 'configStorage'

Seems to be just an import error, which was mentioned in the Bitshares 0.2.0 change log. Any plans on updating this soon?

Instead of using

from bitshares.storage import configStorage as config

use

 BitShares().config

or

from bitshares.storage import get_default_config_store
config = get_default_config_store()
xeroc commented 5 years ago

fixed with latest release