Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Jun 7, 2022
1 parent 2b965ff commit 9e19dd1
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions testutil/simapp/simapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,19 @@ package simapp
import (
"encoding/json"
"testing"
"time"

"github.com/cosmos/cosmos-sdk/simapp"

ibctesting "github.com/cosmos/ibc-go/v3/testing"

"github.com/tendermint/spm/cosmoscmd"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/libs/log"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
tmtypes "github.com/tendermint/tendermint/types"
tmdb "github.com/tendermint/tm-db"

appConsumer "github.com/cosmos/interchain-security/app/consumer"
appProvider "github.com/cosmos/interchain-security/app/provider"
)

var defaultConsensusParams = &abci.ConsensusParams{
Block: &abci.BlockParams{
MaxBytes: 200000,
MaxGas: 2000000,
},
Evidence: &tmproto.EvidenceParams{
MaxAgeNumBlocks: 302400,
MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration
MaxBytes: 10000,
},
Validator: &tmproto.ValidatorParams{
PubKeyTypes: []string{
tmtypes.ABCIPubKeyTypeEd25519,
},
},
}

func SetupTestingappProvider() (ibctesting.TestingApp, map[string]json.RawMessage) {
db := tmdb.NewMemDB()
// encCdc := app.MakeTestEncodingConfig()
Expand Down

0 comments on commit 9e19dd1

Please sign in to comment.