You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating an existing account through new_account, it will go restored,
But at this time, the account object is returned, there is no public or private key information.
// eosio.token has been created before
eosio_token = new_account(eosio, "eosio.token")
INFO(eosio_token .active()) // Output empty information
if is_in_globals(account_object_name, globals):
logger.INFO('''
######## Account object ``{}`` restored from the blockchain.
'''.format(account_object_name))
return globals[account_object_name]
I think it is the information that I lost my account when I resumed. I hope I can recover it all.
The text was updated successfully, but these errors were encountered:
It will be corrected soon. Still, you have the keys in the wallet, so you can recover keys. But the principle of EOSFactory is that it keeps the user out of the wallet operations. Therefore, after the accounts are restored, their keys are in the wallet and therefore the accounts can be used in transactions.
In fact, accounts are restored basing on the keys stored in active wallets.
When creating an existing account through new_account, it will go restored,
But at this time, the account object is returned, there is no public or private key information.
eosfactory/eosfactory/shell/account.py
Line 627 in ee00f66
I think it is the information that I lost my account when I resumed. I hope I can recover it all.
The text was updated successfully, but these errors were encountered: