Skip to content

Commit d30f651

Browse files
committed
Dont call eth-tester for createAccessList
1 parent c5f4ca1 commit d30f651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/providers/eth_tester/defaults.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def personal_send_transaction(eth_tester: "EthereumTester", params: Any) -> HexS
311311
"sendTransaction": call_eth_tester("send_transaction"),
312312
"sendRawTransaction": call_eth_tester("send_raw_transaction"),
313313
"call": call_eth_tester("call"), # TODO: untested
314-
"createAccessList": call_eth_tester("create_access_list"),
314+
"createAccessList": not_implemented,
315315
"estimateGas": call_eth_tester("estimate_gas"), # TODO: untested
316316
"getBlockByHash": null_if_block_not_found(call_eth_tester("get_block_by_hash")),
317317
"getBlockByNumber": null_if_block_not_found(

0 commit comments

Comments
 (0)