state save/load test.

This commit is contained in:
Jae Kwon
2014-10-07 00:43:34 -07:00
parent b73b7a54c7
commit 08f86176fc
11 changed files with 99 additions and 15 deletions

4
log.go
View File

@ -8,6 +8,7 @@ import (
"github.com/tendermint/tendermint/consensus"
"github.com/tendermint/tendermint/mempool"
"github.com/tendermint/tendermint/p2p"
"github.com/tendermint/tendermint/state"
)
var log = logging.MustGetLogger("main")
@ -31,6 +32,7 @@ func init() {
blocks.SetBlocksLogger(log)
consensus.SetConsensusLogger(log)
p2p.SetP2PLogger(log)
mempool.SetMempoolLogger(log)
p2p.SetP2PLogger(log)
state.SetStateLogger(log)
}