Conform to go-merkle version 0.2.0

This commit is contained in:
Jae Kwon
2016-01-17 21:29:18 -08:00
parent 44f22e351b
commit ca259ce82a

View File

@ -3,7 +3,6 @@ package example
import ( import (
. "github.com/tendermint/go-common" . "github.com/tendermint/go-common"
"github.com/tendermint/go-merkle" "github.com/tendermint/go-merkle"
"github.com/tendermint/go-wire"
"github.com/tendermint/tmsp/types" "github.com/tendermint/tmsp/types"
) )
@ -13,8 +12,6 @@ type DummyApplication struct {
func NewDummyApplication() *DummyApplication { func NewDummyApplication() *DummyApplication {
state := merkle.NewIAVLTree( state := merkle.NewIAVLTree(
wire.BasicCodec,
wire.BasicCodec,
0, 0,
nil, nil,
) )