Skip to content

Commit 7d22049

Browse files
authored
fix: correct spelling error in airdrop_supply.go (#95)
Simple typo
1 parent 57df1cd commit 7d22049

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

x/claim/keeper/airdrop_supply.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (k Keeper) InitializeAirdropSupply(ctx sdk.Context, airdropSupply sdk.Coin)
5252

5353
// set the module balance with the airdrop supply
5454
if err := k.bankKeeper.MintCoins(ctx, types.ModuleName, sdk.NewCoins(airdropSupply)); err != nil {
55-
return errors.Criticalf("can't mint airdrop suply into module balance %s", err.Error())
55+
return errors.Criticalf("can't mint airdrop supply into module balance %s", err.Error())
5656
}
5757

5858
k.SetAirdropSupply(ctx, airdropSupply)

0 commit comments

Comments
 (0)