From 7d22049f4c9d5d28df4e0a44717b07399a4558f1 Mon Sep 17 00:00:00 2001 From: BobboFuxx <134005319+BobboFuxx@users.noreply.github.com> Date: Mon, 28 Aug 2023 00:35:03 -0700 Subject: [PATCH] fix: correct spelling error in `airdrop_supply.go` (#95) Simple typo --- x/claim/keeper/airdrop_supply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/claim/keeper/airdrop_supply.go b/x/claim/keeper/airdrop_supply.go index 81a2144..69befa5 100644 --- a/x/claim/keeper/airdrop_supply.go +++ b/x/claim/keeper/airdrop_supply.go @@ -52,7 +52,7 @@ func (k Keeper) InitializeAirdropSupply(ctx sdk.Context, airdropSupply sdk.Coin) // set the module balance with the airdrop supply if err := k.bankKeeper.MintCoins(ctx, types.ModuleName, sdk.NewCoins(airdropSupply)); err != nil { - return errors.Criticalf("can't mint airdrop suply into module balance %s", err.Error()) + return errors.Criticalf("can't mint airdrop supply into module balance %s", err.Error()) } k.SetAirdropSupply(ctx, airdropSupply)