Skip to content

Commit 2924fe6

Browse files
committed
fix: mypy
1 parent 2145e1a commit 2924fe6

File tree

1 file changed

+2
-2
lines changed
  • packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/blob_sender

1 file changed

+2
-2
lines changed

packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/blob_sender/blob_sender.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from eth_keys import keys
66
from eth_utils import to_checksum_address
77

8-
from execution_testing.base_types.base_types import Bytes
8+
from execution_testing.base_types.base_types import Address, Bytes
99
from execution_testing.forks import ForkSetAdapter
1010
from execution_testing.logging import (
1111
get_logger,
@@ -114,7 +114,7 @@ def pytest_configure(config: pytest.Config) -> None:
114114

115115
# get sender nonce on target network
116116
eth_rpc = EthRPC(rpc_endpoint)
117-
nonce = eth_rpc.get_transaction_count(sender_address)
117+
nonce = eth_rpc.get_transaction_count(Address(sender_address))
118118

119119
logger.info(
120120
"\nBlob Sender Plugin Configuration:"

0 commit comments

Comments
 (0)