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 0a50cde commit 1a9aa33
Showing 1 changed file with 2 additions and 2 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

0 comments on commit 1a9aa33

Please sign in to comment.