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" "bytes"
"io/ioutil" "io/ioutil"
. "github.com/tendermint/go-common" . "github.com/tendermint/tmlibs/common"
"golang.org/x/crypto/openpgp/armor" "golang.org/x/crypto/openpgp/armor"
) )

View File

@ -6,7 +6,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"
) )
type PubName struct { type PubName struct {

View File

@ -7,7 +7,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"
wire "github.com/tendermint/go-wire" wire "github.com/tendermint/go-wire"
) )

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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