Fix tmsp/example import paths

This commit is contained in:
Jae Kwon
2016-02-14 15:03:55 -08:00
parent a6d37a49a2
commit d17d4fa106
4 changed files with 10 additions and 10 deletions

View File

@ -17,7 +17,7 @@ import (
sm "github.com/tendermint/tendermint/state"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tmsp/example/golang"
"github.com/tendermint/tmsp/example/counter"
)
var chainID string
@ -311,7 +311,7 @@ func newConsensusState(state *sm.State, pv *types.PrivValidator) *ConsensusState
blockStore := bc.NewBlockStore(blockDB)
// one for mempool, one for consensus
mtx, app := new(sync.Mutex), example.NewCounterApplication(false)
mtx, app := new(sync.Mutex), counter.NewCounterApplication(false)
proxyAppConnMem := proxy.NewLocalAppConn(mtx, app)
proxyAppConnCon := proxy.NewLocalAppConn(mtx, app)