Don't use gas strategies

Gas strategies are meant only for legacy transactions (pre-EIP1559). See https://web3py.readthedocs.io/en/stable/gas_price.html
pull/3416/head
David Núñez 2023-12-15 17:45:30 +01:00
parent 6bc2d4bad2
commit d37bbf88bc
1 changed files with 2 additions and 1 deletions

View File

@ -259,7 +259,8 @@ class BlockchainInterface:
self.log.debug('Injecting POA middleware at layer 0')
self.client.inject_middleware(geth_poa_middleware, layer=0)
self.configure_gas_strategy()
# TODO: See #2770
# self.configure_gas_strategy()
def configure_gas_strategy(self, gas_strategy: Optional[Callable] = None) -> None: