Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
aleem1314 committed Aug 10, 2021
1 parent 53e0736 commit 3b5556a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/bank/migrations/v044/store.go
Expand Up @@ -22,7 +22,7 @@ func MigrateStore(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec)
return err
}

return migrateDenomMetadata(store, cdc)
return migrateDenomMetadata(store)
}

func addDenomReverseIndex(store sdk.KVStore, cdc codec.BinaryCodec) error {
Expand Down Expand Up @@ -71,7 +71,7 @@ func addDenomReverseIndex(store sdk.KVStore, cdc codec.BinaryCodec) error {
return nil
}

func migrateDenomMetadata(store sdk.KVStore, cdc codec.BinaryCodec) error {
func migrateDenomMetadata(store sdk.KVStore) error {
oldDenomMetaDataStore := prefix.NewStore(store, v043.DenomMetadataPrefix)

oldDenomMetaDataIter := oldDenomMetaDataStore.Iterator(nil, nil)
Expand Down

0 comments on commit 3b5556a

Please sign in to comment.