From 1a00d52ef84986657f4fac816cfc4fbc0f675170 Mon Sep 17 00:00:00 2001 From: PFC <81114960+PFC-developer@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:55:18 -0500 Subject: [PATCH] typo --- contracts/injective-auction-pool/src/executions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/injective-auction-pool/src/executions.rs b/contracts/injective-auction-pool/src/executions.rs index 8d520b0..b85f863 100644 --- a/contracts/injective-auction-pool/src/executions.rs +++ b/contracts/injective-auction-pool/src/executions.rs @@ -285,7 +285,7 @@ pub fn settle_auction( auction_winning_bid: Uint128, ) -> Result { // only whitelist addresses can settle the auction for now until the - // contract can query the aunction module for a specific auction round + // contract can query the auction module for a specific auction round let config = CONFIG.load(deps.storage)?; if !config.whitelisted_addresses.contains(&info.sender) { return Err(ContractError::Unauthorized {});