steemit / steem-python

The official Python (3) library for the Steem Blockchain.
https://steem.io
MIT License
153 stars 99 forks source link

import account error #6

Closed bycz6 closed 7 years ago

bycz6 commented 7 years ago

I'm trying to run the cli wallet but always getting this error!

image

Netherdrake commented 7 years ago

The second passphrase is your BIP38 wallet one, not your steem account.

Also, does your BIP38 wallet password contain any special characters?

bycz6 commented 7 years ago

Ok, so how i create a BIP38 wallet?

Netherdrake commented 7 years ago

The wallet is created automatically, the first time you import a Steem account, or a private key. If you forgot your wallet password, you can delete the wallet ~/.local/share/steem/steem.sql and try importing your account again.

bycz6 commented 7 years ago

thanks a lot! It work. Just one more question how I make my script to run without asking the password everytime?

Netherdrake commented 7 years ago

You can set UNLOCK environment variable, with your password.

bycz6 commented 7 years ago

Thanks