Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeseung-bae committed Mar 22, 2024
1 parent a110c4f commit 9e98e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/bankplus/deprecator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9e98e96

Please sign in to comment.