Open arjunaskykok opened 5 years ago
I found the thing that caused this issue. The execute_transaction is removed in a commit in py-evm project: https://github.com/ethereum/py-evm/commit/19923689e8bac1191da5e9667ccc6ff0a1a9692f#diff-2d5d99f4dd8df9b29c7486b27678f9fb
The replacement is apply_transaction method. Fixing this issue is easy. Creating test is a little bit confusing.
What was wrong?
$ python3.7 -m venv .venv $ source .venv/bin/activate $ cat requirements.txt vyper pytest web3 eth-tester py-evm $ pip install -r requirements.txt $ cat HelloWorld.json
$ cat test_greeter.py
$ py.test test_greeter.py
How can it be fixed?
I don't know.