This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
forked from heikoheiko/pyethapp
-
Notifications
You must be signed in to change notification settings - Fork 603
loadchain.py in examples does not work #264
Comments
@bgits you are right sir.
|
I discovered after opening this issue that pyethapp just no longer works with the current chain. |
what is the substitute of this ? |
You created this issue on 16 Oct . I think, Author or contributor have to look on this . |
It seems the entire project is being replaced by:
https://github.com/ethereum/py-evm
Have not had time to investigate if py-evm is in a working state yet. If it
is this ticket should be updated to start using py-evm.
…On Thu, Dec 28, 2017 at 6:45 AM, ChiragMaliwal ***@***.***> wrote:
You created this issue on 16 Oct .
I think, Author or contributor have to look on this .
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#264 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD1YSP6gPzUM5TL_NldWBU2VhUZZq7uZks5tE39UgaJpZM4P54aM>
.
|
Thanks for the update. Yes, looks like |
Afaik you are correct that it is not properly being developed/maintained anymore, but it is definitely not being replaced by py-evm. Pyethapp was a full client, py-evm is just an evm implementation so if anything it is more likely to replace pyethereum as mentioned in its readme. |
ghost
mentioned this issue
Feb 15, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Checklist
pyethapp
inside a virtualenvSystem/environment
Expected behaviour
should read all block in the chain and print the blk.header.number
Observed behaviour
File "loadchain.py", line 62, in
chain = get_chain()
File "loadchain.py", line 18, in get_chain
return Chain(Env(db))
File "/Users/anaconda/envs/pyethapp/lib/python2.7/site-packages/ethereum-2.0.4-py2.7.egg/ethereum/pow/chain.py", line 47, in init
elif "extraData" in genesis:
TypeError: argument of type 'Env' is not iterable
Moved past this error by setting
genesis = genesis.config
but then ran in to the next errorFile "loadchain.py", line 62, in
chain = get_chain()
File "loadchain.py", line 18, in get_chain
return Chain(Env(db))
File "/Users/anaconda/envs/pyethapp/lib/python2.7/site-packages/ethereum-2.0.4-py2.7.egg/ethereum/pow/chain.py", line 68, in init
}, self.env)
File "/Users/anaconda/envs/pyethapp/lib/python2.7/site-packages/ethereum-2.0.4-py2.7.egg/ethereum/genesis_helpers.py", line 118, in mk_basic_state
addr = normalize_address(addr)
File "/Users/anaconda/envs/pyethapp/lib/python2.7/site-packages/ethereum-2.0.4-py2.7.egg/ethereum/utils.py", line 220, in normalize_address
raise Exception("Invalid address format: %r" % x)
Exception: Invalid address format: 'ACCOUNT_INITIAL_NONCE'
Steps to reproduce
cd examples && python loadchain.py
The text was updated successfully, but these errors were encountered: