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 {