diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-17 19:04:02 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-17 19:04:20 +0800 |
commit | 34d0e1b2c32d1bfe3aaa8519cf760ce499315ad5 (patch) | |
tree | 95a87c4e2393abb7817306a01297c4735a98850f /p2p | |
parent | 643eda5c2d3190147bc55ef27c4ce241c7c59da2 (diff) | |
download | dexon-34d0e1b2c32d1bfe3aaa8519cf760ce499315ad5.tar.gz dexon-34d0e1b2c32d1bfe3aaa8519cf760ce499315ad5.tar.zst dexon-34d0e1b2c32d1bfe3aaa8519cf760ce499315ad5.zip |
p2p: fix ecies dependency in tests
We forgot to update this reference when moving ecies into the
go-ethereum repo.
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/crypto_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/crypto_test.go b/p2p/crypto_test.go index 0a9d49f96..6cf0f4818 100644 --- a/p2p/crypto_test.go +++ b/p2p/crypto_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/ethereum/go-ethereum/crypto" - "github.com/obscuren/ecies" + "github.com/ethereum/go-ethereum/crypto/ecies" ) func TestPublicKeyEncoding(t *testing.T) { |