Skip to content

Commit de0efa5

Browse files
committed
[WIP] Implement subroutine opcodes
1 parent a16d9a0 commit de0efa5

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

docs/contributing.rst

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,8 @@ Thank you for your interest in contributing! We welcome all contributions no mat
66
Setting the stage
77
~~~~~~~~~~~~~~~~~
88

9-
**Only on macOS**: if it is the first time you install Py-EVM, you will need to install LevelDB with brew before taking the following steps:
10-
11-
.. code:: sh
12-
13-
brew install python3 LevelDB
14-
15-
9+
.. note::
10+
If it is the first time you install py-evm on macOS, check https://py-evm.readthedocs.io/en/latest/guides/quickstart.html#installing-on-macos
1611

1712
We need to clone the Py-EVM repository. Py-EVM depends on a submodule of the common tests across all clients, so we need to clone the repo with the ``--recursive`` flag. Example:
1813

docs/guides/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Finally, we can install the ``py-evm`` package via pip.
3737
Installing on macOS
3838
-------------------
3939

40-
First, install Python 3 with brew:
40+
First, install Python 3 and LevelDB with brew:
4141

4242
.. code:: sh
4343
44-
brew install python3
44+
brew install python3 leveldb
4545
4646
.. note::
4747
.. include:: /fragments/virtualenv_explainer.rst

eth/vm/forks/berlin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ class BerlinVM(MuirGlacierVM):
2828
# Methods
2929
create_header_from_parent = staticmethod(create_berlin_header_from_parent) # type: ignore
3030
compute_difficulty = staticmethod(compute_berlin_difficulty) # type: ignore
31-
configure_header = configure_berlin_header
31+
configure_header = configure_berlin_header

0 commit comments

Comments
 (0)