Skip to content

Commit

Permalink
Fix issues with new tests after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
fselmo committed Sep 24, 2024
1 parent d9f17d2 commit b43da8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/core/contracts/test_contract_build_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_build_transaction_with_contract_no_arguments_no_parens(
"value": 0,
"maxFeePerGas": 2750000000,
"maxPriorityFeePerGas": 10**9,
"chainId": 131277322940537,
"chainId": w3.eth.chain_id,
}


Expand Down Expand Up @@ -329,7 +329,7 @@ async def test_async_build_transaction_with_contract_no_arguments_no_parens(
"value": 0,
"maxFeePerGas": 2750000000,
"maxPriorityFeePerGas": 10**9,
"chainId": 131277322940537,
"chainId": await async_w3.eth.chain_id,
}


Expand Down
2 changes: 1 addition & 1 deletion tests/core/contracts/test_contract_estimate_gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ async def test_async_estimate_gas_accepts_latest_block(
async def test_async_estimate_gas_can_be_called_without_parens(
async_w3, async_math_contract, async_transact
):
gas_estimate = await async_math_contract.functions.counter.estimate_gas(
gas_estimate = await async_math_contract.functions.incrementCounter.estimate_gas(
block_identifier="latest"
)

Expand Down

0 comments on commit b43da8a

Please sign in to comment.