Hi i am working on a steem blockchain project and i setup the steem blockchain localy by follow this link
git clone https://github.com/steemit/steem
cd steem
git submodule update --init --recursive
https://steemit.com/steem/@dantheman/how-to-start-a-test-network
blockchain is started and running but running with following errors
after the start blockchain i have start the wallet by following command
set configuration in testnet-->config.ini file
name of witness controlled by this node (e.g. initminer )
witness = "initminer"
WIF private key (may specify multiple times)
private-key = 5JNHfZYKGaomSFvd4NUdQ9qMcEAC43kujbfjueTHpVapX1Kzq2n
Endpoint for P2P node to listen on
p2p-endpoint = 0.0.0.0:3333
Endpoint for websocket RPC to listen on
rpc-endpoint = 127.0.0.1:9876
api configuration
public-api = database_api login_api network_broadcast_api follow_api market_history_api account_history_api
plugin = webserver p2p json_rpc witness account_by_key tags follow market_history account_history account_history_api
plugin = database_api account_by_key_api network_broadcast_api tags_api follow_api market_history_api witness_api condenser_api block_api
enable-api = witness account_history tags follow market_history
then restart the blockchain by follwing command
steemd/steed -d testnet --enable-stale-production
running with following output
After the running the steemd i started the cli_wallet by following command
./cli_wallet --server-rpc-endpoint="ws://127.0.0.1:<myPortNo.>"
and the set_password import_key (private key) which is showing in steemd console
but when i call function list_my_account it's not showing any account but in the given website which i follow to install and run it showing account of "initminer"
and the main issues is............... when i create an account using the following method
create_account "initminer" "myAccount" "" true
it's showing
0 exception: unspecified
missing required active authority:Missing Active Authority initminer
I search the same issues in internet but didn't get and solution
please help me out .......
thanks in advance