Closed joelvai closed 6 years ago
I get this error when trying to use uptick --help:
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()
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()
fixed with latest release
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?