From 0ab12eefc80d8a81efc0647c6eeb6fef5637921b Mon Sep 17 00:00:00 2001 From: Jochem Brouwer Date: Mon, 16 Jun 2025 19:03:34 +0200 Subject: [PATCH] feat(gentest): update imports to fix template --- .../gentest/templates/blockchain_test/transaction.py.j2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/cli/gentest/templates/blockchain_test/transaction.py.j2 b/src/cli/gentest/templates/blockchain_test/transaction.py.j2 index ef192d37c07..6cef0e34dcd 100644 --- a/src/cli/gentest/templates/blockchain_test/transaction.py.j2 +++ b/src/cli/gentest/templates/blockchain_test/transaction.py.j2 @@ -8,7 +8,13 @@ from typing import Dict import pytest -from ethereum_test_tools import Account, Environment, StateTestFiller, Storage, Transaction +from ethereum_test_rpc.types import TransactionByHashResponse +from ethereum_test_tools import ( + Account, + Environment, + StateTestFiller, + Storage, +) REFERENCE_SPEC_GIT_PATH = "N/A" REFERENCE_SPEC_VERSION = "N/A"