aboutsummaryrefslogtreecommitdiffstats
path: root/p2p
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-02-18 06:19:45 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-02-18 06:19:45 +0800
commitc1d0693cb19c79bbfd7d1948d0799a9e2795076d (patch)
tree7c0c3fbbda3666989286347737351cb8f01a835e /p2p
parent5ec8c5f71b2db976ffe51180f20bfd6b4fd94188 (diff)
parentf965f41b6e8d177f4f06a8421ee071350813a1ac (diff)
downloadgo-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.gz
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.bz2
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.lz
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.xz
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.tar.zst
go-tangerine-c1d0693cb19c79bbfd7d1948d0799a9e2795076d.zip
Merge pull request #325 from fjl/deps-cleanup
Cleanup imports
Diffstat (limited to 'p2p')
-rw-r--r--p2p/crypto_test.go2
-rw-r--r--p2p/nat/natupnp.go6
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 {