Skip to content

Commit

Permalink
Update eth_api.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
canepat authored Nov 7, 2024
1 parent b33e893 commit 9544818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silkworm/rpc/commands/eth_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1991,7 +1991,7 @@ Task<void> EthereumRpcApi::handle_eth_unsubscribe(const nlohmann::json& request,
}

// https://eth.wiki/json-rpc/API#eth_feehistory
Task<void> EthereumRpcApi::handle_fee_history(const nlohmann::json& request, nlohmann::json& reply) {
Task<void> EthereumRpcApi::handle_eth_fee_history(const nlohmann::json& request, nlohmann::json& reply) {
const auto& params = request["params"];
if (params.size() != 3) {
const auto error_msg = "invalid eth_feeHistory params: " + params.dump();
Expand Down

0 comments on commit 9544818

Please sign in to comment.