style: comment not-yet-used fields for linter, x/circuit (#15750)

This commit is contained in:
Mark Rushakoff 2023-04-10 06:20:13 -04:00 committed by GitHub
parent eb52f03acb
commit 59e5ca20b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {