diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-18 06:19:45 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-18 06:19:45 +0800 |
commit | c1d0693cb19c79bbfd7d1948d0799a9e2795076d (patch) | |
tree | 7c0c3fbbda3666989286347737351cb8f01a835e /p2p | |
parent | 5ec8c5f71b2db976ffe51180f20bfd6b4fd94188 (diff) | |
parent | f965f41b6e8d177f4f06a8421ee071350813a1ac (diff) | |
download | dexon-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.gz dexon-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.zst dexon-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.zip |
Merge pull request #325 from fjl/deps-cleanup
Cleanup imports
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/crypto_test.go | 2 | ||||
-rw-r--r-- | p2p/nat/natupnp.go | 6 |
2 files changed, 4 insertions, 4 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) { diff --git a/p2p/nat/natupnp.go b/p2p/nat/natupnp.go index 25cbc0d71..ef7765e8d 100644 --- a/p2p/nat/natupnp.go +++ b/p2p/nat/natupnp.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "github.com/fjl/goupnp" - "github.com/fjl/goupnp/dcps/internetgateway1" - "github.com/fjl/goupnp/dcps/internetgateway2" + "github.com/huin/goupnp" + "github.com/huin/goupnp/dcps/internetgateway1" + "github.com/huin/goupnp/dcps/internetgateway2" ) type upnp struct { |