File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/blob_sender Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 55from eth_keys import keys
66from 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
99from execution_testing .forks import ForkSetAdapter
1010from 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 "\n Blob Sender Plugin Configuration:"
You can’t perform that action at this time.
0 commit comments