diff --git a/app/app.go b/app/app.go index 0cd334e33..3fe2c6a93 100644 --- a/app/app.go +++ b/app/app.go @@ -21,7 +21,7 @@ import ( "github.com/cosmos/cosmos-sdk/server/api" "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" + // "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" @@ -112,7 +112,7 @@ var ( // Verify app interface at compile time var ( - _ simapp.App = (*SecretNetworkApp)(nil) + // _ simapp.App = (*SecretNetworkApp)(nil) _ servertypes.Application = (*SecretNetworkApp)(nil) _ servertypes.ApplicationQueryService = (*SecretNetworkApp)(nil) ) @@ -326,7 +326,7 @@ func (app *SecretNetworkApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBloc // InitChainer application update at chain initialization func (app *SecretNetworkApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain { - var genesisState simapp.GenesisState + // var genesisState simapp.GenesisState if err := tmjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil { panic(err) } diff --git a/x/compute/internal/keeper/test_common.go b/x/compute/internal/keeper/test_common.go index 3e0a4a04e..3f899886c 100644 --- a/x/compute/internal/keeper/test_common.go +++ b/x/compute/internal/keeper/test_common.go @@ -47,7 +47,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" crypto "github.com/cosmos/cosmos-sdk/crypto/types" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + // simappparams "github.com/cosmos/cosmos-sdk/simapp/params" "github.com/cosmos/cosmos-sdk/std" "cosmossdk.io/store" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/mauth/keeper/keeper_test.go b/x/mauth/keeper/keeper_test.go index 3043f9f8e..a89074100 100644 --- a/x/mauth/keeper/keeper_test.go +++ b/x/mauth/keeper/keeper_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "github.com/cosmos/cosmos-sdk/simapp" + // "github.com/cosmos/cosmos-sdk/simapp" "github.com/scrtlabs/SecretNetwork/x/compute" "github.com/stretchr/testify/suite" @@ -43,7 +43,7 @@ func init() { func SetupICATestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) { db := dbm.NewMemDB() // encCdc := icaapp.MakeEncodingConfig() - app := icaapp.NewSecretNetworkApp(log.NewNopLogger(), db, nil, true, map[int64]bool{}, icaapp.DefaultNodeHome, 5, false, simapp.EmptyAppOptions{}, compute.DefaultWasmConfig()) + // app := icaapp.NewSecretNetworkApp(log.NewNopLogger(), db, nil, true, map[int64]bool{}, icaapp.DefaultNodeHome, 5, false, simapp.EmptyAppOptions{}, compute.DefaultWasmConfig()) // TODO: figure out if it's ok that w MakeEncodingConfig inside of our Genesis.go. It would be a different instance than the one used in app return app, icaapp.NewDefaultGenesisState() } diff --git a/x/registration/internal/keeper/test_common.go b/x/registration/internal/keeper/test_common.go index 52f2279bb..7a2ec626c 100644 --- a/x/registration/internal/keeper/test_common.go +++ b/x/registration/internal/keeper/test_common.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/cosmos/cosmos-sdk/simapp/params" + // "github.com/cosmos/cosmos-sdk/simapp/params" "github.com/cosmos/cosmos-sdk/std" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth"