go-data -> go-wire/data

This commit is contained in:
Ethan Buchman
2017-04-21 18:13:25 -04:00
parent d1926bcad1
commit e6fe6b5b76
16 changed files with 16 additions and 16 deletions

View File

@ -5,7 +5,7 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"
) )

2
glide.lock generated
View File

@ -90,7 +90,7 @@ imports:
version: 620dcbbd7d587cf3599dedbf329b64311b0c307a version: 620dcbbd7d587cf3599dedbf329b64311b0c307a
- name: github.com/tendermint/go-crypto - name: github.com/tendermint/go-crypto
version: 9b95da8fa4187f6799558d89b271dc8ab6485615 version: 9b95da8fa4187f6799558d89b271dc8ab6485615
- name: github.com/tendermint/go-data - name: github.com/tendermint/go-wire/data
version: e7fcc6d081ec8518912fcdc103188275f83a3ee5 version: e7fcc6d081ec8518912fcdc103188275f83a3ee5
- name: github.com/tendermint/tmlibs/db - name: github.com/tendermint/tmlibs/db
version: 9643f60bc2578693844aacf380a7c32e4c029fee version: 9643f60bc2578693844aacf380a7c32e4c029fee

View File

@ -10,7 +10,7 @@ import:
version: develop version: develop
- package: github.com/tendermint/go-crypto - package: github.com/tendermint/go-crypto
version: develop version: develop
- package: github.com/tendermint/go-data - package: github.com/tendermint/go-wire/data
version: develop version: develop
- package: github.com/tendermint/tmlibs/db - package: github.com/tendermint/tmlibs/db
version: develop version: develop

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"github.com/pkg/errors" "github.com/pkg/errors"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
events "github.com/tendermint/tmlibs/events" events "github.com/tendermint/tmlibs/events"
"github.com/tendermint/go-rpc/client" "github.com/tendermint/go-rpc/client"
wire "github.com/tendermint/go-wire" wire "github.com/tendermint/go-wire"

View File

@ -20,7 +20,7 @@ implementation.
package client package client
import ( import (
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"
) )

View File

@ -1,7 +1,7 @@
package client package client
import ( import (
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
nm "github.com/tendermint/tendermint/node" nm "github.com/tendermint/tendermint/node"
"github.com/tendermint/tendermint/rpc/tendermint/core" "github.com/tendermint/tendermint/rpc/tendermint/core"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"

View File

@ -2,7 +2,7 @@ package mock
import ( import (
abci "github.com/tendermint/abci/types" abci "github.com/tendermint/abci/types"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
"github.com/tendermint/tendermint/rpc/tendermint/client" "github.com/tendermint/tendermint/rpc/tendermint/client"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"

View File

@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/tendermint/abci/example/dummy" "github.com/tendermint/abci/example/dummy"
abci "github.com/tendermint/abci/types" abci "github.com/tendermint/abci/types"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"

View File

@ -16,7 +16,7 @@ package mock
import ( import (
"reflect" "reflect"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
"github.com/tendermint/tendermint/rpc/tendermint/client" "github.com/tendermint/tendermint/rpc/tendermint/client"
"github.com/tendermint/tendermint/rpc/tendermint/core" "github.com/tendermint/tendermint/rpc/tendermint/core"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"

View File

@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/rpc/tendermint/client/mock" "github.com/tendermint/tendermint/rpc/tendermint/client/mock"

View File

@ -2,7 +2,7 @@ package core
import ( import (
abci "github.com/tendermint/abci/types" abci "github.com/tendermint/abci/types"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
) )

View File

@ -5,7 +5,7 @@ import (
"time" "time"
abci "github.com/tendermint/abci/types" abci "github.com/tendermint/abci/types"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"
) )

View File

@ -1,7 +1,7 @@
package core package core
import ( import (
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
rpc "github.com/tendermint/go-rpc/server" rpc "github.com/tendermint/go-rpc/server"
"github.com/tendermint/go-rpc/types" "github.com/tendermint/go-rpc/types"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"

View File

@ -1,7 +1,7 @@
package core package core
import ( import (
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types" ctypes "github.com/tendermint/tendermint/rpc/tendermint/core/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint/types"
) )

View File

@ -5,7 +5,7 @@ import (
abci "github.com/tendermint/abci/types" abci "github.com/tendermint/abci/types"
"github.com/tendermint/go-crypto" "github.com/tendermint/go-crypto"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-p2p" "github.com/tendermint/go-p2p"
"github.com/tendermint/go-rpc/types" "github.com/tendermint/go-rpc/types"
"github.com/tendermint/go-wire" "github.com/tendermint/go-wire"

View File

@ -11,7 +11,7 @@ import (
. "github.com/tendermint/tmlibs/common" . "github.com/tendermint/tmlibs/common"
"github.com/tendermint/go-crypto" "github.com/tendermint/go-crypto"
data "github.com/tendermint/go-data" data "github.com/tendermint/go-wire/data"
) )
const ( const (