Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hard-nett committed Mar 8, 2024
1 parent 6e0cec0 commit 1eecd6e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/upgrades/v2/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ func CreateV2UpgradeHandler(
keepers.ICQKeeper.SetParams(ctx, icqParams)

// Packet Forward middleware initial params
keepers.PacketForwardKeeper.SetParams(ctx, packetforwardtypes.DefaultParams())
if err := keepers.PacketForwardKeeper.SetParams(ctx, packetforwardtypes.DefaultParams()); err != nil {
return nil, err
}

// Leave modules are as-is to avoid running InitGenesis.
logger.Debug("running module migrations ...")
Expand Down

0 comments on commit 1eecd6e

Please sign in to comment.