Skip to content

Commit

Permalink
chore: fully remove custom features
Browse files Browse the repository at this point in the history
  • Loading branch information
hacheigriega committed Jan 9, 2024
1 parent 7723a75 commit 61552bd
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ import (

appparams "github.com/sedaprotocol/seda-chain/app/params"
"github.com/sedaprotocol/seda-chain/docs"
randomness "github.com/sedaprotocol/seda-chain/x/randomness"
randomnesstypes "github.com/sedaprotocol/seda-chain/x/randomness/types"
wasmstorage "github.com/sedaprotocol/seda-chain/x/wasm-storage"
wasmstoragetypes "github.com/sedaprotocol/seda-chain/x/wasm-storage/types"
)

const (
Expand Down Expand Up @@ -166,8 +162,6 @@ var (
ibcfee.AppModuleBasic{},
transfer.AppModuleBasic{},
ica.AppModuleBasic{},
wasmstorage.AppModuleBasic{},
randomness.AppModuleBasic{},
crisis.AppModuleBasic{},
// solomachine.AppModuleBasic{},
)
Expand Down Expand Up @@ -318,7 +312,6 @@ func NewApp(
capabilitytypes.StoreKey, ibcexported.StoreKey, ibctransfertypes.StoreKey, ibcfeetypes.StoreKey,
wasmtypes.StoreKey, icahosttypes.StoreKey,
icacontrollertypes.StoreKey,
wasmstoragetypes.StoreKey, randomnesstypes.StoreKey,
)

memKeys := storetypes.NewMemoryStoreKeys(capabilitytypes.MemStoreKey)
Expand Down Expand Up @@ -727,9 +720,6 @@ func NewApp(
icatypes.ModuleName,
ibcfeetypes.ModuleName,
wasmtypes.ModuleName,
// custom
wasmstoragetypes.ModuleName,
randomnesstypes.ModuleName,
)

app.mm.SetOrderEndBlockers(
Expand All @@ -756,9 +746,6 @@ func NewApp(
icatypes.ModuleName,
ibcfeetypes.ModuleName,
wasmtypes.ModuleName,
// custom
wasmstoragetypes.ModuleName,
randomnesstypes.ModuleName,
)

// NOTE: The genutils module must occur after staking so that pools are
Expand Down Expand Up @@ -791,9 +778,6 @@ func NewApp(
icatypes.ModuleName,
ibcfeetypes.ModuleName,
wasmtypes.ModuleName, // wasm after ibc transfer
// custom modules
wasmstoragetypes.ModuleName,
randomnesstypes.ModuleName,
}
app.mm.SetOrderInitGenesis(genesisModuleOrder...)
app.mm.SetOrderExportGenesis(genesisModuleOrder...)
Expand Down

0 comments on commit 61552bd

Please sign in to comment.