From 5128504fc847c238967fee878caf9f32cad6a067 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Mon, 5 Aug 2024 17:51:23 -0500 Subject: [PATCH] fix: delete unused method --- ape_foundry/provider.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ape_foundry/provider.py b/ape_foundry/provider.py index 6417a4f..3b058ef 100644 --- a/ape_foundry/provider.py +++ b/ape_foundry/provider.py @@ -670,16 +670,6 @@ def set_storage(self, address: AddressType, slot: int, value: HexBytes): ], ) - def _eth_call(self, arguments: list, raise_on_revert: bool = True) -> HexBytes: - # Overridden to handle unique Foundry pickiness. - txn_dict = copy(arguments[0]) - if isinstance(txn_dict.get("type"), int): - txn_dict["type"] = HexBytes(txn_dict["type"]).hex() - - txn_dict.pop("chainId", None) - arguments[0] = txn_dict - return super()._eth_call(arguments, raise_on_revert=raise_on_revert) - class FoundryForkProvider(FoundryProvider): """