From 31a456c8d403333639cf0b1d02e73037d4212cc4 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Sun, 25 Oct 2015 13:45:13 -0700 Subject: [PATCH] update package name --- priv_key.go | 2 +- pub_key.go | 7 +++---- signature.go | 4 ++-- signature_test.go | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/priv_key.go b/priv_key.go index 9a5c66163..f548172e4 100644 --- a/priv_key.go +++ b/priv_key.go @@ -1,4 +1,4 @@ -package account +package crypto import ( "github.com/tendermint/ed25519" diff --git a/pub_key.go b/pub_key.go index 0e7d8fa0d..6eeb4a86e 100644 --- a/pub_key.go +++ b/pub_key.go @@ -1,14 +1,13 @@ - -package account +package crypto import ( "bytes" "github.com/tendermint/ed25519" "github.com/tendermint/ed25519/extra25519" - "golang.org/x/crypto/ripemd160" - "github.com/tendermint/go-wire" . "github.com/tendermint/go-common" + "github.com/tendermint/go-wire" + "golang.org/x/crypto/ripemd160" ) // PubKey is part of Account and Validator. diff --git a/signature.go b/signature.go index 1224c5c99..959258091 100644 --- a/signature.go +++ b/signature.go @@ -1,10 +1,10 @@ -package account +package crypto import ( "fmt" - "github.com/tendermint/go-wire" . "github.com/tendermint/go-common" + "github.com/tendermint/go-wire" ) // Signature is a part of Txs and consensus Votes. diff --git a/signature_test.go b/signature_test.go index 8e603f97b..1dbc58096 100644 --- a/signature_test.go +++ b/signature_test.go @@ -1,4 +1,4 @@ -package account +package crypto import ( "bytes"