From 59e5ca20b65a43896f4704f879f78358b060bc58 Mon Sep 17 00:00:00 2001 From: Mark Rushakoff Date: Mon, 10 Apr 2023 06:20:13 -0400 Subject: [PATCH] style: comment not-yet-used fields for linter, x/circuit (#15750) --- x/circuit/keeper/test_utils.go | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/x/circuit/keeper/test_utils.go b/x/circuit/keeper/test_utils.go index 01299e3bdc..16e266d980 100644 --- a/x/circuit/keeper/test_utils.go +++ b/x/circuit/keeper/test_utils.go @@ -1,22 +1,20 @@ package keeper import ( - "context" "testing" - - storetypes "cosmossdk.io/store/types" - sdk "github.com/cosmos/cosmos-sdk/types" ) type baseFixture struct { t *testing.T err error - ctx context.Context - // k Keeper //TODO uncomment this after implementing - addrs []sdk.AccAddress - storeKey *storetypes.KVStoreKey - sdkCtx sdk.Context + // TODO: uncomment these after implementing. + // ctx context.Context + + // k Keeper + // addrs []sdk.AccAddress + // storeKey *storetypes.KVStoreKey + // sdkCtx sdk.Context } func initFixture(t *testing.T) *baseFixture {