Skip to content

Commit

Permalink
Merge pull request #181 from UnitapApp/fix/gas-price
Browse files Browse the repository at this point in the history
fix gas price too high error
  • Loading branch information
Mohamad Bastin authored Nov 8, 2023
2 parents a2409e0 + fcb3816 commit 8d0e04f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faucet/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ def is_gas_price_too_high(self):
from faucet.faucet_manager.fund_manager import EVMFundManager

return EVMFundManager(self).is_gas_price_too_high
except Exception as e:
logging.exception(f"Error getting gas price for {self.chain_name} error is {e}")
except Exception: # noqa: E722
logging.exception(f"Error getting gas price for {self.chain_name}")
return True

@property
Expand Down

0 comments on commit 8d0e04f

Please sign in to comment.