fix some imports

This commit is contained in:
Ethan Buchman
2017-04-27 15:55:23 +02:00
committed by Ethan Frey
parent acc9a79daa
commit 9c391a08a9
9 changed files with 14 additions and 15 deletions
+4 -4
View File
@@ -9,12 +9,12 @@ import (
"github.com/stretchr/testify/assert"
abci "github.com/tendermint/abci/types"
"github.com/tendermint/basecoin/types"
cmn "github.com/tendermint/tmlibs/common"
crypto "github.com/tendermint/go-crypto"
"github.com/tendermint/merkleeyes/iavl"
"github.com/tendermint/go-wire"
eyes "github.com/tendermint/merkleeyes/client"
"github.com/tendermint/merkleeyes/iavl"
tm "github.com/tendermint/tendermint/types"
cmn "github.com/tendermint/tmlibs/common"
)
// NOTE: PrivAccounts are sorted by Address,
@@ -192,7 +192,7 @@ func TestIBCPlugin(t *testing.T) {
Prove: true,
})
assert.Nil(err)
var proof *merkle.IAVLProof
var proof *iavl.IAVLProof
err = wire.ReadBinaryBytes(resQuery.Proof, &proof)
assert.Nil(err)
@@ -379,7 +379,7 @@ func TestIBCPluginBadProof(t *testing.T) {
Prove: true,
})
assert.Nil(err)
var proof *merkle.IAVLProof
var proof *iavl.IAVLProof
err = wire.ReadBinaryBytes(resQuery.Proof, &proof)
assert.Nil(err)