remove unused arg for apply_gas_multiplier
This commit is contained in:
parent
a426a1463b
commit
7c364d56a8
1 changed files with 1 additions and 1 deletions
2
core.py
2
core.py
|
|
@ -43,7 +43,7 @@ def apply_estimated_gas(tx, attempts=18):
|
||||||
return tx
|
return tx
|
||||||
|
|
||||||
|
|
||||||
def apply_gas_multiplier(tx, multiplier=None, attempts=18):
|
def apply_gas_multiplier(tx, multiplier=None):
|
||||||
if not multiplier:
|
if not multiplier:
|
||||||
multiplier = os.getenv('GAS_MULTIPLIER')
|
multiplier = os.getenv('GAS_MULTIPLIER')
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue