From 3ded171cdf4d6bd7b2518e710ca466630db26611 Mon Sep 17 00:00:00 2001 From: canepat <16927169+canepat@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:08:46 +0100 Subject: [PATCH] Update rpc_api_table.cpp --- silkworm/rpc/commands/rpc_api_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silkworm/rpc/commands/rpc_api_table.cpp b/silkworm/rpc/commands/rpc_api_table.cpp index 5d7cdc0841..392a2fecbc 100644 --- a/silkworm/rpc/commands/rpc_api_table.cpp +++ b/silkworm/rpc/commands/rpc_api_table.cpp @@ -157,7 +157,7 @@ void RpcApiTable::add_eth_handlers() { method_handlers_[json_rpc::method::k_eth_getBlockReceipts] = &commands::RpcApi::handle_eth_get_block_receipts; method_handlers_[json_rpc::method::k_eth_getTransactionReceiptsByBlock] = &commands::RpcApi::handle_eth_get_block_receipts; method_handlers_[json_rpc::method::k_eth_maxPriorityFeePerGas] = &commands::RpcApi::handle_eth_max_priority_fee_per_gas; - method_handlers_[json_rpc::method::k_eth_feeHistory] = &commands::RpcApi::handle_fee_history; + method_handlers_[json_rpc::method::k_eth_feeHistory] = &commands::RpcApi::handle_eth_fee_history; method_handlers_[json_rpc::method::k_eth_callMany] = &commands::RpcApi::handle_eth_call_many; method_handlers_[json_rpc::method::k_eth_baseFee] = &commands::RpcApi::handle_eth_base_fee; method_handlers_[json_rpc::method::k_eth_blobBaseFee] = &commands::RpcApi::handle_eth_blob_base_fee;