mirror of https://github.com/nucypher/nucypher.git
Don't use gas strategies
Gas strategies are meant only for legacy transactions (pre-EIP1559). See https://web3py.readthedocs.io/en/stable/gas_price.htmlpull/3416/head
parent
6bc2d4bad2
commit
d37bbf88bc
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue