Fix code spell lint in CI (#8634)

Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
This commit is contained in:
nishuyes
2024-06-06 17:11:01 +08:00
committed by GitHub
parent ffd3153587
commit b11c83cee6
8 changed files with 12 additions and 8 deletions

View File

@ -130,7 +130,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 30 timeout-minutes: 30
steps: steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2 - uses: codespell-project/actions-codespell@v2
with:
skip: "*.json"
grafana: grafana:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -356,7 +356,7 @@ lint-other-targets:
-- -D warnings -- -D warnings
lint-codespell: ensure-codespell lint-codespell: ensure-codespell
codespell codespell --skip "*.json"
ensure-codespell: ensure-codespell:
@if ! command -v codespell &> /dev/null; then \ @if ! command -v codespell &> /dev/null; then \

View File

@ -1190,7 +1190,7 @@ where
"Canonicalization finished" "Canonicalization finished"
); );
// clear trie updates for other childs // clear trie updates for other children
self.block_indices() self.block_indices()
.fork_to_child() .fork_to_child()
.get(&old_tip.hash) .get(&old_tip.hash)

View File

@ -88,7 +88,7 @@ pub(crate) enum MakeCanonicalAction {
RevertCanonicalChainFromDatabase, RevertCanonicalChainFromDatabase,
/// Inserting an old canonical chain. /// Inserting an old canonical chain.
InsertOldCanonicalChain, InsertOldCanonicalChain,
/// Clearing trie updates of other childs chains after fork choice update. /// Clearing trie updates of other children chains after fork choice update.
ClearTrieUpdatesForOtherChilds, ClearTrieUpdatesForOtherChilds,
} }
@ -116,7 +116,8 @@ struct MakeCanonicalMetrics {
revert_canonical_chain_from_database: Histogram, revert_canonical_chain_from_database: Histogram,
/// Duration of the insert old canonical chain action. /// Duration of the insert old canonical chain action.
insert_old_canonical_chain: Histogram, insert_old_canonical_chain: Histogram,
/// Duration of the clear trie updates of other childs chains after fork choice update action. /// Duration of the clear trie updates of other children chains after fork choice update
/// action.
clear_trie_updates_for_other_childs: Histogram, clear_trie_updates_for_other_childs: Histogram,
} }

View File

@ -281,7 +281,7 @@ pub trait NodeComponentsBuilder<Node: FullNodeTypes>: Send {
/// The components for the node with the given types /// The components for the node with the given types
type Components: NodeComponents<Node>; type Components: NodeComponents<Node>;
/// Consumes the type and returns the crated components. /// Consumes the type and returns the created components.
fn build_components( fn build_components(
self, self,
ctx: &BuilderContext<Node>, ctx: &BuilderContext<Node>,

View File

@ -43,7 +43,7 @@ pub fn try_payload_v1_to_block(payload: ExecutionPayloadV1) -> Result<Block, Pay
timestamp: payload.timestamp, timestamp: payload.timestamp,
mix_hash: payload.prev_randao, mix_hash: payload.prev_randao,
// WARNING: Its allowed for a base fee in EIP1559 to increase unbounded. We assume that // WARNING: Its allowed for a base fee in EIP1559 to increase unbounded. We assume that
// it will fit in an u64. This is not always necessarily true, although it is extremelly // it will fit in an u64. This is not always necessarily true, although it is extremely
// unlikely not to be the case, a u64 maximum would have 2^64 which equates to 18 ETH per // unlikely not to be the case, a u64 maximum would have 2^64 which equates to 18 ETH per
// gas. // gas.
base_fee_per_gas: Some( base_fee_per_gas: Some(

View File

@ -351,7 +351,7 @@ where
let mut writer = static_file_provider.latest_writer(StaticFileSegment::Headers)?; let mut writer = static_file_provider.latest_writer(StaticFileSegment::Headers)?;
writer.prune_headers(static_file_headers_to_unwind)?; writer.prune_headers(static_file_headers_to_unwind)?;
// Set the stage checkpoin entities processed based on how much we unwound - we add the // Set the stage checkpoint entities processed based on how much we unwound - we add the
// headers unwound from static files and db // headers unwound from static files and db
let stage_checkpoint = let stage_checkpoint =
input.checkpoint.headers_stage_checkpoint().map(|stage_checkpoint| HeadersCheckpoint { input.checkpoint.headers_stage_checkpoint().map(|stage_checkpoint| HeadersCheckpoint {

View File

@ -593,7 +593,7 @@ impl StaticFileProviderRW {
fn ensure_no_queued_prune(&self) -> ProviderResult<()> { fn ensure_no_queued_prune(&self) -> ProviderResult<()> {
if self.prune_on_commit.is_some() { if self.prune_on_commit.is_some() {
return Err(ProviderError::NippyJar( return Err(ProviderError::NippyJar(
"Pruning should be comitted before appending or pruning more data".to_string(), "Pruning should be committed before appending or pruning more data".to_string(),
)) ))
} }
Ok(()) Ok(())