Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PFC-developer committed Mar 13, 2024
1 parent 61ed439 commit 1a00d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/injective-auction-pool/src/executions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ pub fn settle_auction(
auction_winning_bid: Uint128,
) -> Result<Response, ContractError> {
// 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 {});
Expand Down

0 comments on commit 1a00d52

Please sign in to comment.