From 02039e8fecfd9f125c79458d2536f57c6cfedfd4 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 4 Aug 2023 11:34:59 +0200 Subject: [PATCH] Don't increment the gas for Safe creation - This was posibly a fix for nodes not estimating Safe creation propertly - It doesn't make sense to keep this around --- gnosis/safe/safe.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gnosis/safe/safe.py b/gnosis/safe/safe.py index a99663bf5..52d79c708 100644 --- a/gnosis/safe/safe.py +++ b/gnosis/safe/safe.py @@ -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 )