Skip to content

Commit

Permalink
Don't increment the gas for Safe creation
Browse files Browse the repository at this point in the history
- This was posibly a fix for nodes not estimating Safe creation propertly
- It doesn't make sense to keep this around
  • Loading branch information
Uxio0 committed Aug 4, 2023
1 parent 3262355 commit 02039e8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gnosis/safe/safe.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def create(
tx = proxy_contract.constructor(
master_copy_address, initializer
).build_transaction({"from": deployer_account.address})
tx["gas"] = tx["gas"] * 100000
tx_hash = ethereum_client.send_unsigned_transaction(
tx, private_key=deployer_account.key
)
Expand Down

0 comments on commit 02039e8

Please sign in to comment.