Skip to content

Commit

Permalink
Remove default gas limit
Browse files Browse the repository at this point in the history
Reverts one of the changes from #1652 to fix the sporadically-failing `test_integer_overflow_multitx_onefunc_feasible` test in `ethereum_bench`
  • Loading branch information
Eric Hennenfent authored Apr 30, 2020
1 parent 5228962 commit 5306a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/ethereum/manticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def new_address(self):
if new_address not in all_addresses:
return new_address

def transaction(self, caller, address, value, data, gas=21000, price=1):
def transaction(self, caller, address, value, data, gas=None, price=1):
""" Issue a symbolic transaction in all running states
:param caller: the address of the account sending the transaction
Expand Down

0 comments on commit 5306a28

Please sign in to comment.