Polishing up any minor spelling errors (#15223)

This commit is contained in:
futreall
2025-03-25 12:48:44 +02:00
committed by GitHub
parent 985a926bee
commit 6772939bc9
4 changed files with 4 additions and 4 deletions

View File

@@ -17,5 +17,5 @@ pub trait MinerApi {
/// Sets the gaslimit to target towards during mining.
#[method(name = "setGasLimit")]
fn set_gas_limit(&self, gas_price: U128) -> RpcResult<bool>;
fn set_gas_limit(&self, gas_limit: U128) -> RpcResult<bool>;
}

View File

@@ -33,7 +33,7 @@ pub trait SpawnBlocking: EthApiTypes + Clone + Send + Sync + 'static {
self.tracing_task_guard().clone().acquire_owned()
}
/// See also [`Semaphore::acquire_many_owned`](`tokio::sync::Semaphore::acquire_many_owned`).
/// See also [`Semaphore::acquire_many_owned`](`tokio::sync::Semaphore::acquire_many_owned`).
fn acquire_many_owned(
&self,
n: u32,

View File

@@ -184,7 +184,7 @@ pub trait EthFees: LoadFee {
/ alloy_eips::eip4844::MAX_DATA_GAS_PER_BLOCK as f64,
);
// Percentiles were specified, so we need to collect reward percentile ino
// Percentiles were specified, so we need to collect reward percentile info
if let Some(percentiles) = &reward_percentiles {
let (block, receipts) = self.cache()
.get_block_and_receipts(header.hash())

View File

@@ -49,7 +49,7 @@ use std::sync::Arc;
pub trait EthTransactions: LoadTransaction<Provider: BlockReaderIdExt> {
/// Returns a handle for signing data.
///
/// Singer access in default (L1) trait method implementations.
/// Signer access in default (L1) trait method implementations.
#[expect(clippy::type_complexity)]
fn signers(&self) -> &parking_lot::RwLock<Vec<Box<dyn EthSigner<ProviderTx<Self::Provider>>>>>;