Skip to content

Commit

Permalink
Increase estimation for gas cost for circles signup
Browse files Browse the repository at this point in the history
  • Loading branch information
llunaCreixent committed Nov 15, 2023
1 parent a6864d4 commit 076af32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion safe_relay_service/relay/services/funding_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def send_eth_to(
block_identifier="pending",
):
if not gas_price:
gas_price = self.gas_station.get_gas_prices().standard
gas_price = self.gas_station.get_gas_prices().fast

if self.max_eth_to_send and value > Web3.toWei(self.max_eth_to_send, "ether"):
raise EtherLimitExceeded(
Expand Down
2 changes: 1 addition & 1 deletion safe_relay_service/relay/services/transaction_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def estimate_circles_signup_tx(
"""
# Tx data from Circles Hub contract `signup` method
data = "0xb7bc0f73"
return 10000000000000000
return 100000000000000000

def estimate_circles_organization_signup_tx(
self, safe_address: str, gas_token: str = NULL_ADDRESS
Expand Down

0 comments on commit 076af32

Please sign in to comment.