Skip to content

Commit

Permalink
Merge pull request #2570 from eqlabs/krisztian/rpc-0.8-fix-estimate-m…
Browse files Browse the repository at this point in the history
…essage-fee

fix(rpc/v08): register proper implementation for `starknet_estimateMessageFee`
  • Loading branch information
kkovaacs authored Feb 4, 2025
2 parents 90d6e5f + 6571393 commit a213e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rpc/src/v08.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn register_routes() -> RpcRouterBuilder {
.register("starknet_call", crate::method::call)
.register("starknet_chainId", crate::method::chain_id)
.register("starknet_estimateFee", crate::method::estimate_fee)
.register("starknet_estimateMessageFee", crate::method::estimate_fee)
.register("starknet_estimateMessageFee", crate::method::estimate_message_fee)
.register("starknet_getBlockTransactionCount", crate::method::get_block_transaction_count)
.register("starknet_getBlockWithTxHashes", crate::method::get_block_with_tx_hashes)
.register("starknet_getBlockWithTxs", crate::method::get_block_with_txs)
Expand Down

0 comments on commit a213e8e

Please sign in to comment.