From 9c5a2047452423af2e29b5eaef399725298c2306 Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Wed, 26 Jun 2024 13:52:56 -0500 Subject: [PATCH] rm unused funcs --- app/sim_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/app/sim_test.go b/app/sim_test.go index bf38ed3..a3506d1 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -20,7 +20,6 @@ import ( dbm "github.com/cosmos/cosmos-db" "cosmossdk.io/log" - "cosmossdk.io/store" storetypes "cosmossdk.io/store/types" "cosmossdk.io/x/feegrant" @@ -44,18 +43,6 @@ func init() { flag.BoolVar(&FlagEnableStreamingValue, "EnableStreaming", false, "Enable streaming service") } -// fauxMerkleModeOpt returns a BaseApp option to use a dbStoreAdapter instead of -// an IAVLStore for faster simulation speed. -func fauxMerkleModeOpt(bapp *baseapp.BaseApp) { - bapp.SetFauxMerkleMode() -} - -// interBlockCacheOpt returns a BaseApp option function that sets the persistent -// inter-block write-through cache. -func interBlockCacheOpt() func(*baseapp.BaseApp) { - return baseapp.SetInterBlockCache(store.NewCommitKVStoreCacheManager()) -} - func TestFullAppSimulation(t *testing.T) { config := simcli.NewConfigFromFlags() config.ChainID = SimAppChainID