We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
airdrop_supply.go
1 parent 57df1cd commit 7d22049Copy full SHA for 7d22049
1 file changed
x/claim/keeper/airdrop_supply.go
@@ -52,7 +52,7 @@ func (k Keeper) InitializeAirdropSupply(ctx sdk.Context, airdropSupply sdk.Coin)
52
53
// set the module balance with the airdrop supply
54
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())
+ return errors.Criticalf("can't mint airdrop supply into module balance %s", err.Error())
56
}
57
58
k.SetAirdropSupply(ctx, airdropSupply)
0 commit comments