move both reactor versions under blockchain

This commit is contained in:
Anca Zamfir
2019-06-19 11:32:26 +02:00
parent f0559a05b0
commit 7bf1683077
25 changed files with 78 additions and 55 deletions

View File

@ -24,7 +24,7 @@ import (
"github.com/tendermint/tendermint/p2p"
"github.com/tendermint/tendermint/p2p/mock"
sm "github.com/tendermint/tendermint/state"
"github.com/tendermint/tendermint/tmstore"
"github.com/tendermint/tendermint/store"
"github.com/tendermint/tendermint/types"
)
@ -133,7 +133,7 @@ func TestReactorWithEvidence(t *testing.T) {
// css[i] = newConsensusStateWithConfig(thisConfig, state, privVals[i], app)
blockDB := dbm.NewMemDB()
blockStore := tmstore.NewBlockStore(blockDB)
blockStore := store.NewBlockStore(blockDB)
// one for mempool, one for consensus
mtx := new(sync.Mutex)