File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -338,8 +338,8 @@ class TestEthereumTesterEthModule(EthModuleTest):
338
338
EthModuleTest .test_eth_getBlockReceipts_finalized ,
339
339
MethodUnavailable ,
340
340
)
341
- test_eth_simulateV1 = not_implemented (
342
- EthModuleTest .test_eth_simulateV1 ,
341
+ test_eth_simulate_v1 = not_implemented (
342
+ EthModuleTest .test_eth_simulate_v1 ,
343
343
MethodUnavailable ,
344
344
)
345
345
Original file line number Diff line number Diff line change @@ -1691,8 +1691,8 @@ async def test_eth_call_continuous_offchain_lookup_raises_with_too_many_requests
1691
1691
await async_offchain_lookup_contract .caller ().continuousOffchainLookup () # noqa: E501 type: ignore
1692
1692
1693
1693
@pytest .mark .asyncio
1694
- async def test_eth_simulateV1 (self , async_w3 : "AsyncWeb3" ) -> None :
1695
- simulate_result = await async_w3 .eth .simulateV1 (
1694
+ async def test_eth_simulate_v1 (self , async_w3 : "AsyncWeb3" ) -> None :
1695
+ simulate_result = await async_w3 .eth .simulate_v1 (
1696
1696
{
1697
1697
"blockStateCalls" : [
1698
1698
{
@@ -3960,8 +3960,8 @@ def test_eth_call_custom_error_revert_without_msg(
3960
3960
w3 .eth .call (txn_params )
3961
3961
assert excinfo .value .data == data
3962
3962
3963
- def test_eth_simulateV1 (self , w3 : "Web3" ) -> None :
3964
- simulate_result = w3 .eth .simulateV1 (
3963
+ def test_eth_simulate_v1 (self , w3 : "Web3" ) -> None :
3964
+ simulate_result = w3 .eth .simulate_v1 (
3965
3965
{
3966
3966
"blockStateCalls" : [
3967
3967
{
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ async def _durin_call(
300
300
]
301
301
] = Method (RPC .eth_simulateV1 )
302
302
303
- async def simulateV1 (
303
+ async def simulate_v1 (
304
304
self ,
305
305
payload : SimulateV1Payload ,
306
306
block_identifier : BlockIdentifier ,
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ def _durin_call(
278
278
Callable [[SimulateV1Payload , BlockIdentifier ], Sequence [SimulateV1Result ]]
279
279
] = Method (RPC .eth_simulateV1 )
280
280
281
- def simulateV1 (
281
+ def simulate_v1 (
282
282
self ,
283
283
payload : SimulateV1Payload ,
284
284
block_identifier : BlockIdentifier ,
You can’t perform that action at this time.
0 commit comments