Skip to content

Commit

Permalink
fix(tools): mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Dec 19, 2024
1 parent eba9208 commit 14c0421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_test_tools/utility/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def generate_system_contract_deploy_test(
del tx_json["gas"]
if "protected" not in tx_json:
tx_json["protected"] = False
deploy_tx = Transaction.model_validate(tx_json).with_signature_and_sender()
deploy_tx = Transaction.model_validate(tx_json).with_signature_and_sender() # type: ignore
gas_price = deploy_tx.gas_price
assert gas_price is not None
deployer_required_balance = deploy_tx.gas_limit * gas_price
Expand Down

0 comments on commit 14c0421

Please sign in to comment.