From 9e98e969e0319b57b3c4f3936cc76cf565daeba5 Mon Sep 17 00:00:00 2001 From: "jaeseung.bae" Date: Fri, 22 Mar 2024 16:00:49 +0900 Subject: [PATCH] chore: fix lint --- x/bankplus/deprecator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/bankplus/deprecator_test.go b/x/bankplus/deprecator_test.go index e93e274680..e207b12c68 100644 --- a/x/bankplus/deprecator_test.go +++ b/x/bankplus/deprecator_test.go @@ -85,7 +85,7 @@ func addToInactiveAddr(ctx context.Context, storeService store.KVStoreService, c panic(err) } - blockedCAddr := types.InactiveAddr{Address: addrString} //lint:ignore SA1019 types.InactiveAddr is deprecated. Will be removed next version + blockedCAddr := types.InactiveAddr{Address: addrString} // nolint: staticcheck // SA1019 types.InactiveAddr is deprecated. Will be removed next version bz := cdc.MustMarshal(&blockedCAddr) if err := kvStore.Set(inactiveAddrKey(address), bz); err != nil { panic(err)