EOSIO / eos

An open source smart contract platform
https://developers.eos.io/manuals/eos
MIT License
11.27k stars 3.6k forks source link

Transaction declares authority but does not have signatures for it #8284

Closed samhatem closed 4 years ago

samhatem commented 4 years ago

Running into a lot of errors trying to deploy a contract to the jungle test net.

Screen Shot 2019-12-06 at 3 20 14 AM

And yes I have already imported my private key (I've tried importing multiple private keys) and tried everything from #4432.

samhatem commented 4 years ago

I'm following the set up from https://developers.eos.io/eosio-home/docs and keosd is getting an error: FC Exception encountered while processing wallet.get_public_keys

Screen Shot 2019-12-06 at 6 19 04 AM
jgiszczak commented 4 years ago

Try running keosd with --verbose-http-errors to get more detail about the error. Most likely you've either restarted keosd or it has timed out and locked the default wallet. get_public_keys will not succeed if the wallet is locked.

samhatem commented 4 years ago

Still getting the same error trying to deploy the contract, but not getting any error with keosd now.

I'm running:

keosd --verbose-http-errors &

nodeos -e -p eosio \ --plugin eosio::producer_plugin \ --plugin eosio::chain_api_plugin \ --plugin eosio::http_plugin \ --plugin eosio::history_plugin \ --plugin eosio::history_api_plugin \ --filter-on="" \ --access-control-allow-origin='' \ --contracts-console \ --http-validate-host=false \ --verbose-http-errors >> nodeos.log 2>&1 &

cleos wallet unlock cleos -u https://api.jungle.alohaeos.com set contract mnenomneno22 mneno/ "/mneno.wasm" "/mneno.abi" -p mnenomneno22@owner

cleos get account mnenomneno22 returns the expected output by the way.

jgiszczak commented 4 years ago

And what is keosd now reporting?

ndcgundlach commented 4 years ago

No response for a month.