fix a few typos (#5402)

This commit is contained in:
QuantumExplorer
2020-09-25 11:38:28 +07:00
committed by Erik Grinaker
parent 41ab199378
commit 1b733ea28d
2 changed files with 8 additions and 8 deletions

View File

@@ -129,7 +129,7 @@ func TestValUpdates(t *testing.T) {
total := 10 total := 10
nInit := 5 nInit := 5
vals := RandVals(total) vals := RandVals(total)
// iniitalize with the first nInit // initialize with the first nInit
kvstore.InitChain(types.RequestInitChain{ kvstore.InitChain(types.RequestInitChain{
Validators: vals[:nInit], Validators: vals[:nInit],
}) })

View File

@@ -665,17 +665,17 @@ func testHandshakeReplay(t *testing.T, config *cfg.Config, nBlocks int, mode uin
var commits []*types.Commit var commits []*types.Commit
var store *mockBlockStore var store *mockBlockStore
var stateDB dbm.DB var stateDB dbm.DB
var genisisState sm.State var genesisState sm.State
if testValidatorsChange { if testValidatorsChange {
testConfig := ResetConfig(fmt.Sprintf("%s_%v_m", t.Name(), mode)) testConfig := ResetConfig(fmt.Sprintf("%s_%v_m", t.Name(), mode))
defer os.RemoveAll(testConfig.RootDir) defer os.RemoveAll(testConfig.RootDir)
stateDB = dbm.NewMemDB() stateDB = dbm.NewMemDB()
genisisState = sim.GenesisState genesisState = sim.GenesisState
config = sim.Config config = sim.Config
chain = append([]*types.Block{}, sim.Chain...) // copy chain chain = append([]*types.Block{}, sim.Chain...) // copy chain
commits = sim.Commits commits = sim.Commits
store = newMockBlockStore(config, genisisState.ConsensusParams) store = newMockBlockStore(config, genesisState.ConsensusParams)
} else { //test single node } else { //test single node
testConfig := ResetConfig(fmt.Sprintf("%s_%v_s", t.Name(), mode)) testConfig := ResetConfig(fmt.Sprintf("%s_%v_s", t.Name(), mode))
defer os.RemoveAll(testConfig.RootDir) defer os.RemoveAll(testConfig.RootDir)
@@ -700,14 +700,14 @@ func testHandshakeReplay(t *testing.T, config *cfg.Config, nBlocks int, mode uin
require.NoError(t, err) require.NoError(t, err)
pubKey, err := privVal.GetPubKey() pubKey, err := privVal.GetPubKey()
require.NoError(t, err) require.NoError(t, err)
stateDB, genisisState, store = stateAndStore(config, pubKey, kvstore.ProtocolVersion) stateDB, genesisState, store = stateAndStore(config, pubKey, kvstore.ProtocolVersion)
} }
stateStore := sm.NewStore(stateDB) stateStore := sm.NewStore(stateDB)
store.chain = chain store.chain = chain
store.commits = commits store.commits = commits
state := genisisState.Copy() state := genesisState.Copy()
// run the chain through state.ApplyBlock to build up the tendermint state // run the chain through state.ApplyBlock to build up the tendermint state
state = buildTMStateFromChain(config, stateStore, state, chain, nBlocks, mode) state = buildTMStateFromChain(config, stateStore, state, chain, nBlocks, mode)
latestAppHash := state.AppHash latestAppHash := state.AppHash
@@ -723,9 +723,9 @@ func testHandshakeReplay(t *testing.T, config *cfg.Config, nBlocks int, mode uin
proxyApp := proxy.NewAppConns(clientCreator2) proxyApp := proxy.NewAppConns(clientCreator2)
stateDB1 := dbm.NewMemDB() stateDB1 := dbm.NewMemDB()
stateStore := sm.NewStore(stateDB1) stateStore := sm.NewStore(stateDB1)
err := stateStore.Save(genisisState) err := stateStore.Save(genesisState)
require.NoError(t, err) require.NoError(t, err)
buildAppStateFromChain(proxyApp, stateStore, genisisState, chain, nBlocks, mode) buildAppStateFromChain(proxyApp, stateStore, genesisState, chain, nBlocks, mode)
} }
// Prune block store if requested // Prune block store if requested