remove unused arg for apply_gas_multiplier

This commit is contained in:
Alexander 2024-07-15 11:07:32 -04:00
parent a426a1463b
commit 7c364d56a8

View file

@ -43,7 +43,7 @@ def apply_estimated_gas(tx, attempts=18):
return tx
def apply_gas_multiplier(tx, multiplier=None, attempts=18):
def apply_gas_multiplier(tx, multiplier=None):
if not multiplier:
multiplier = os.getenv('GAS_MULTIPLIER')
try: