From 7ca3db8a6610c4a45281b11eb334dbd61e2218dd Mon Sep 17 00:00:00 2001 From: Devon Bear Date: Wed, 18 Oct 2023 21:27:27 -0400 Subject: [PATCH] chore(rpc): `eip-1159` -> `eip-1559` (#5083) --- crates/rpc/rpc-api/src/eth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/rpc/rpc-api/src/eth.rs b/crates/rpc/rpc-api/src/eth.rs index 29ef6b5a3..ab0f3a8bd 100644 --- a/crates/rpc/rpc-api/src/eth.rs +++ b/crates/rpc/rpc-api/src/eth.rs @@ -198,13 +198,13 @@ pub trait EthApi { #[method(name = "gasPrice")] async fn gas_price(&self) -> RpcResult; - /// Introduced in EIP-1159, returns suggestion for the priority for dynamic fee transactions. + /// Introduced in EIP-1559, returns suggestion for the priority for dynamic fee transactions. #[method(name = "maxPriorityFeePerGas")] async fn max_priority_fee_per_gas(&self) -> RpcResult; /// Returns the Transaction fee history /// - /// Introduced in EIP-1159 for getting information on the appropriate priority fee to use. + /// Introduced in EIP-1559 for getting information on the appropriate priority fee to use. /// /// Returns transaction base fee per gas and effective priority fee per gas for the /// requested/supported block range. The returned Fee history for the returned block range