Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
montekki authored Sep 28, 2023
1 parent 78657fd commit 8873270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions withdrawals-meterer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use ethers::types::Address;
use sqlx::PgPool;
use storage::StoredWithdrawal;

/// State of withdrawls volumes metering.
/// State of withdrawals volumes metering.
pub struct WithdrawalsMeter {
pool: PgPool,
token_decimals: HashMap<Address, u32>,
Expand All @@ -25,7 +25,7 @@ impl WithdrawalsMeter {
/// # Arguments
///
/// * `pool`: DB connection pool
/// * `metric_name: Name of the metric to meter to
/// * `metric_name`: Name of the metric to meter to
pub fn new(pool: PgPool, metric_name: &'static str) -> Self {
let mut token_decimals = HashMap::new();
token_decimals.insert(ETH_TOKEN_ADDRESS, 18_u32);
Expand Down

0 comments on commit 8873270

Please sign in to comment.