Skip to content

Commit

Permalink
fix gas price too high error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamad Bastin committed Nov 8, 2023
1 parent a2409e0 commit fcb3816
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 fcb3816

Please sign in to comment.