Skip to content

Commit

Permalink
switch map to array
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnya97 committed Nov 18, 2021
1 parent f018a4f commit bd1b2d9
Show file tree
Hide file tree
Showing 2 changed files with 87,446 additions and 87,446 deletions.
2 changes: 1 addition & 1 deletion x/claim/keeper/claim.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (k Keeper) EndAirdrop(ctx sdk.Context) error {
// ClawbackAirdrop implements prop 32 by clawing back all the OSMO and IONs from airdrop
// recipient accounts with a sequence number of 0
func (k Keeper) ClawbackAirdrop(ctx sdk.Context) error {
for bechAddr := range types.AirdropAddrs {
for _, bechAddr := range types.AirdropAddrs {
addr, err := sdk.AccAddressFromBech32(bechAddr)
if err != nil {
return err
Expand Down
Loading

0 comments on commit bd1b2d9

Please sign in to comment.