From bc8ab484004f7c7fb72aa377d5fbb931d2a1da0c Mon Sep 17 00:00:00 2001 From: Snobbish Bee <125891987+snobbee@users.noreply.github.com> Date: Sun, 26 Nov 2023 06:26:34 +0100 Subject: [PATCH] test: fix linter --- x/clp/keeper/migrations.go | 1 + 1 file changed, 1 insertion(+) diff --git a/x/clp/keeper/migrations.go b/x/clp/keeper/migrations.go index 2ffcfd7d45..83d8190c84 100644 --- a/x/clp/keeper/migrations.go +++ b/x/clp/keeper/migrations.go @@ -98,6 +98,7 @@ func (m Migrator) MigrateToVer5(ctx sdk.Context) error { pools := m.keeper.GetPools(ctx) for _, pool := range pools { pool.RewardAmountExternal = sdk.ZeroUint() + // nolint:errcheck m.keeper.SetPool(ctx, pool) }