NewIAVLTree takes waldir

This commit is contained in:
Ethan Buchman
2016-11-22 20:44:41 -05:00
parent b200b82418
commit dc13ec05a1
2 changed files with 2 additions and 8 deletions

View File

@@ -36,10 +36,7 @@ func NewPersistentDummyApplication(dbDir string) *PersistentDummyApplication {
db := dbm.NewDB("dummy", "leveldb", dbDir)
lastBlock := LoadLastBlock(db)
stateTree := merkle.NewIAVLTree(
0,
db,
)
stateTree := merkle.NewIAVLTree(0, ".", db)
stateTree.Load(lastBlock.AppHash)
log.Notice("Loaded state", "block", lastBlock.BlockHeight, "root", stateTree.Hash())