Skip to content

Commit

Permalink
Raise gas price
Browse files Browse the repository at this point in the history
  • Loading branch information
llunaCreixent committed Nov 16, 2023
1 parent d1da393 commit b85b7b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions safe_relay_service/relay/services/safe_creation_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ def deploy_create2_safe_tx(self, safe_address: str) -> SafeCreation2:
safe_creation2.master_copy,
setup_data,
safe_creation2.salt_nonce,
gas=safe_creation2.gas_estimated + 50000000, # Just in case
gas_price=safe_creation2.gas_price_estimated,
gas=safe_creation2.gas_estimated + 50000, # Just in case
gas_price=safe_creation2.gas_price_estimated + 1000000000,
nonce=tx_nonce,
)
EthereumTx.objects.create_from_tx_dict(
Expand Down

0 comments on commit b85b7b4

Please sign in to comment.