Skip to content

Commit

Permalink
Fix: update transaction gas provided in auxiliary test suite due to g…
Browse files Browse the repository at this point in the history
…as charge fix in ethereum#319
  • Loading branch information
NIC619 authored and hwwhww committed Feb 18, 2018
1 parent f7b9779 commit 628a35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/auxiliary/user-account/test_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def test_no_call_if_not_enough_gas(vm):
transaction = UnsignedUserAccountTransaction(**merge(DEFAULT_TX_PARAMS, {
"nonce": get_nonce(vm),
"destination": NOOP_CONTRACT_ADDRESS,
"gas": 55000,
"gas": 80000,
"access_list": DEFAULT_TX_PARAMS["access_list"] + [[NOOP_CONTRACT_ADDRESS]],
})).as_signed_transaction(PRIVATE_KEY)
computation, _ = vm.apply_transaction(transaction)
Expand Down

0 comments on commit 628a35a

Please sign in to comment.