Skip to content

Commit 9d79211

Browse files
committed
Generate test fixture with geth v1.15.11
1 parent 322b355 commit 9d79211

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
# NOTE: Do not update the `geth_version` manually. It is updated during the
55
# integration test fixture generation.
66
geth_version:
7-
default: "1.15.5"
7+
default: "1.15.11"
88
type: string
99
go_version:
1010
default: "1.24.1"

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,13 +376,13 @@ Geth Fixtures
376376

377377
.. code:: sh
378378
379-
$ python -m geth.install v1.15.5
379+
$ python -m geth.install v1.15.11
380380
381381
2. Specify the Geth binary and run the fixture creation script (from within the web3.py directory):
382382

383383
.. code:: sh
384384
385-
$ GETH_BINARY=~/.py-geth/geth-v1.15.5/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
385+
$ GETH_BINARY=~/.py-geth/geth-v1.15.11/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py
386386
387387
3. The output of this script is your fixture, a zip file, which is now stored in ``/tests/integration/``.
388388
The ``/tests/integration/go_ethereum/conftest.py`` and
46.2 KB
Binary file not shown.

tests/integration/go_ethereum/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636

3737
KEYFILE_PW = "web3py-test"
38-
GETH_FIXTURE_ZIP = "geth-1.15.5-fixture.zip"
38+
GETH_FIXTURE_ZIP = "geth-1.15.11-fixture.zip"
3939

4040

4141
@pytest.fixture

web3/tools/benchmark/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
kill_proc_gracefully,
2525
)
2626

27-
GETH_FIXTURE_ZIP = "geth-1.15.5-fixture.zip"
27+
GETH_FIXTURE_ZIP = "geth-1.15.11-fixture.zip"
2828

2929

3030
class GethBenchmarkFixture:

0 commit comments

Comments
 (0)