update paths

This commit is contained in:
Ethan Buchman
2017-04-18 18:17:02 -04:00
parent c410fc5e24
commit 8bb25ec5ed
10 changed files with 15 additions and 16 deletions

View File

@ -4,7 +4,7 @@ import (
"bytes"
"io/ioutil"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
"golang.org/x/crypto/openpgp/armor"
)

View File

@ -6,7 +6,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
data "github.com/tendermint/go-data"
data "github.com/tendermint/go-wire/data"
)
type PubName struct {

View File

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

View File

@ -9,11 +9,10 @@ import:
- package: github.com/tendermint/ed25519
subpackages:
- extra25519
- package: github.com/tendermint/go-common
- package: github.com/tendermint/go-data
version: develop
- package: github.com/tendermint/tmlibs
version: unstable
- package: github.com/tendermint/go-wire
version: develop
version: unstable
- package: golang.org/x/crypto
subpackages:
- blowfish

View File

@ -6,8 +6,8 @@ import (
secp256k1 "github.com/btcsuite/btcd/btcec"
"github.com/tendermint/ed25519"
"github.com/tendermint/ed25519/extra25519"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
)

View File

@ -7,8 +7,8 @@ import (
secp256k1 "github.com/btcsuite/btcd/btcec"
"github.com/tendermint/ed25519"
"github.com/tendermint/ed25519/extra25519"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
"golang.org/x/crypto/ripemd160"
)

View File

@ -8,7 +8,7 @@ import (
"io"
"sync"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
)
var gRandInfo *randInfo

View File

@ -4,8 +4,8 @@ import (
"bytes"
"fmt"
. "github.com/tendermint/go-common"
data "github.com/tendermint/go-data"
. "github.com/tendermint/tmlibs/common"
data "github.com/tendermint/go-wire/data"
"github.com/tendermint/go-wire"
)

View File

@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tendermint/ed25519"
data "github.com/tendermint/go-data"
data "github.com/tendermint/go-wire/data"
)
func TestSignAndValidateEd25519(t *testing.T) {

View File

@ -3,7 +3,7 @@ package crypto
import (
"errors"
. "github.com/tendermint/go-common"
. "github.com/tendermint/tmlibs/common"
"golang.org/x/crypto/nacl/secretbox"
)