fix some imports

This commit is contained in:
Ethan Buchman 2017-04-26 01:20:29 -04:00 committed by Ethan Frey
parent acc9a79daa
commit 9c391a08a9
9 changed files with 14 additions and 15 deletions

View File

@ -10,8 +10,8 @@ import (
"github.com/tendermint/basecoin/plugins/ibc"
"github.com/tendermint/merkleeyes/iavl"
"github.com/tendermint/go-wire"
"github.com/tendermint/merkleeyes/iavl"
tmtypes "github.com/tendermint/tendermint/types"
)
@ -229,7 +229,7 @@ func ibcPacketPostTxCmd(cmd *cobra.Command, args []string) error {
}
var packet ibc.Packet
proof := new(merkle.IAVLProof)
proof := new(iavl.IAVLProof)
err = wire.ReadBinaryBytes(packetBytes, &packet)
if err != nil {

View File

@ -8,8 +8,8 @@ import (
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/tendermint/merkleeyes/iavl"
"github.com/tendermint/go-wire"
"github.com/tendermint/merkleeyes/iavl"
tmtypes "github.com/tendermint/tendermint/types"
)
@ -202,7 +202,7 @@ func verifyCmd(cmd *cobra.Command, args []string) error {
return errors.Errorf("Proof (%v) is invalid hex: %v\n", proofFlag, err)
}
proof, err := merkle.ReadProof(proofBytes)
proof, err := iavl.ReadProof(proofBytes)
if err != nil {
return errors.Errorf("Error unmarshalling proof: %v\n", err)
}

View File

@ -11,7 +11,7 @@ import (
client "github.com/tendermint/tendermint/rpc/client"
wire "github.com/tendermint/go-wire"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
)
//commands

View File

@ -17,7 +17,7 @@ import (
cmn "github.com/tendermint/tmlibs/common"
client "github.com/tendermint/tendermint/rpc/client"
wire "github.com/tendermint/go-wire"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
tmtypes "github.com/tendermint/tendermint/types"
)

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)

View File

@ -13,7 +13,7 @@ import (
"github.com/tendermint/tendermint/rpc/client"
"github.com/tendermint/tendermint/rpc/types"
"github.com/tendermint/go-wire"
_ "github.com/tendermint/tendermint/rpc/core/types" // Register RPCResponse > Result types
_ "github.com/tendermint/tendermint/rpc/tendermint/core/types" // Register RPCResponse > Result types
)
func main() {

View File

@ -10,7 +10,7 @@ import (
"github.com/tendermint/tendermint/rpc/client"
"github.com/tendermint/tendermint/rpc/types"
wire "github.com/tendermint/go-wire"
_ "github.com/tendermint/tendermint/rpc/core/types" // Register RPCResponse > Result types
_ "github.com/tendermint/tendermint/rpc/tendermint/core/types" // Register RPCResponse > Result types
)
func main() {

View File

@ -3,8 +3,8 @@ package types
// Helper functions for testing
import (
cmn "github.com/tendermint/tmlibs/common"
"github.com/tendermint/go-crypto"
cmn "github.com/tendermint/tmlibs/common"
)
// Creates a PrivAccount from secret.
@ -100,6 +100,6 @@ func GetTx(seq int, accOut PrivAccount, accsIn ...PrivAccount) *SendTx {
func SignTx(chainID string, tx *SendTx, accs ...PrivAccount) {
signBytes := tx.SignBytes(chainID)
for i, _ := range tx.Inputs {
tx.Inputs[i].Signature = crypto.SignatureS{accs[i].Sign(signBytes)}
tx.Inputs[i].Signature = accs[i].Sign(signBytes)
}
}

View File

@ -6,7 +6,6 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
cmn "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
)