Skip to content

Commit

Permalink
chore: fix typos (#190)
Browse files Browse the repository at this point in the history
Signed-off-by: snoppy <[email protected]>
  • Loading branch information
xiaoxianBoy authored Nov 24, 2024
1 parent 1c98a1b commit 8e6cd9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! utilties for parsing user inputs to run cryo
//! utilities for parsing user inputs to run cryo
#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)]
#![deny(unused_must_use, rust_2018_idioms)]
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/parse/blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ mod tests {
// Ranges
let tests: Vec<(BlockNumberTest<'_>, bool)> = vec![
(BlockNumberTest::WithoutMock((r"1", RangePosition::None, 1)), true), // Integer
(BlockNumberTest::WithMock((r"latest", RangePosition::None, 12, 12)), true), /* Lastest block */
(BlockNumberTest::WithMock((r"latest", RangePosition::None, 12, 12)), true), /* Latest block */
(BlockNumberTest::WithoutMock((r"", RangePosition::First, 0)), true), // First block
(BlockNumberTest::WithMock((r"", RangePosition::Last, 12, 12)), true), // Last block
(BlockNumberTest::WithoutMock((r"1B", RangePosition::None, 1000000000)), true), // B
Expand Down
2 changes: 1 addition & 1 deletion crates/freeze/src/types/schemas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use thiserror::Error;
/// collection of schemas
pub type Schemas = HashMap<Datatype, Table>;

/// funcitons for Schemas
/// functions for Schemas
pub trait SchemaFunctions {
/// get schema
fn get_schema(&self, datatype: &Datatype) -> Result<&Table, CollectError>;
Expand Down
2 changes: 1 addition & 1 deletion examples/erc20_balances.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# ERC20 = USDC, USDT
export ERC20="0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 0xdac17f958d2ee523a2206206994597c13d831ec7"

# WALLET = Maker PSM, Arbitrum Brdige
# WALLET = Maker PSM, Arbitrum Bridge
export WALLETS="0x0a59649758aa4d66e25f08dd01271e891fe52199 0xcee284f754e854890e311e3280b767f80797180d"

# block range = 10 blocks between 16,000,000 and 17,000,000
Expand Down

0 comments on commit 8e6cd9b

Please sign in to comment.