aboutsummaryrefslogtreecommitdiffstats
path: root/core/authenticator_test.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-09-26 18:19:12 +0800
committerGitHub <noreply@github.com>2018-09-26 18:19:12 +0800
commit9c2f700be09c27e8a8d12fc5bc0ccd017d408a32 (patch)
treebde8e80468af8535c8652210017553e2ed830d62 /core/authenticator_test.go
parent0398468051068720688199442f53984b4071f4b2 (diff)
downloadtangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar.gz
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar.bz2
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar.lz
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar.xz
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.tar.zst
tangerine-consensus-9c2f700be09c27e8a8d12fc5bc0ccd017d408a32.zip
core: rename crypto/eth to crypto/ecdsa (#144)
Diffstat (limited to 'core/authenticator_test.go')
-rw-r--r--core/authenticator_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/authenticator_test.go b/core/authenticator_test.go
index 08a9179..b6c08d7 100644
--- a/core/authenticator_test.go
+++ b/core/authenticator_test.go
@@ -22,7 +22,7 @@ import (
"time"
"github.com/dexon-foundation/dexon-consensus-core/common"
- "github.com/dexon-foundation/dexon-consensus-core/core/crypto/eth"
+ "github.com/dexon-foundation/dexon-consensus-core/core/crypto/ecdsa"
"github.com/dexon-foundation/dexon-consensus-core/core/types"
"github.com/stretchr/testify/suite"
)
@@ -32,7 +32,7 @@ type AuthenticatorTestSuite struct {
}
func (s *AuthenticatorTestSuite) setupAuthenticator() *Authenticator {
- k, err := eth.NewPrivateKey()
+ k, err := ecdsa.NewPrivateKey()
s.NoError(err)
return NewAuthenticator(k)
}