mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(github): use codespell to inspect and correct spelling issues (#7775)
Signed-off-by: jsvisa <delweng@gmail.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -69,7 +69,7 @@ fn unwind_and_copy<DB: Database>(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Try to re-execute the stage straightaway
|
||||
/// Try to re-execute the stage straight away
|
||||
async fn dry_run<DB: Database>(
|
||||
output_provider_factory: ProviderFactory<DB>,
|
||||
to: u64,
|
||||
|
||||
@ -65,7 +65,7 @@ fn unwind_and_copy<DB: Database>(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Try to re-execute the stage straightaway
|
||||
/// Try to re-execute the stage straight away
|
||||
async fn dry_run<DB: Database>(
|
||||
output_provider_factory: ProviderFactory<DB>,
|
||||
to: u64,
|
||||
|
||||
@ -138,7 +138,7 @@ async fn unwind_and_copy<DB: Database>(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Try to re-execute the stage straightaway
|
||||
/// Try to re-execute the stage straight away
|
||||
async fn dry_run<DB: Database>(
|
||||
output_provider_factory: ProviderFactory<DB>,
|
||||
to: u64,
|
||||
|
||||
@ -81,7 +81,7 @@ where
|
||||
{
|
||||
let mut rows = vec![];
|
||||
let mut seen_keys = HashSet::new();
|
||||
let strat = proptest::collection::vec(
|
||||
let strategy = proptest::collection::vec(
|
||||
any_with::<TableRow<T>>((
|
||||
<T::Key as Arbitrary>::Parameters::default(),
|
||||
<T::Value as Arbitrary>::Parameters::default(),
|
||||
@ -94,7 +94,7 @@ where
|
||||
while rows.len() < per_table {
|
||||
// Generate all `per_table` rows: (Key, Value)
|
||||
rows.extend(
|
||||
&mut strat
|
||||
&mut strategy
|
||||
.new_tree(runner)
|
||||
.map_err(|e| eyre::eyre!("{e}"))?
|
||||
.current()
|
||||
|
||||
Reference in New Issue
Block a user