Merge pull request #180 from zippy/master

imports cleanup, remove dup
This commit is contained in:
Jeromy Johnson 2017-02-21 11:26:33 -08:00 committed by GitHub
commit 1b406994dc
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ import (
inet "github.com/libp2p/go-libp2p-net" inet "github.com/libp2p/go-libp2p-net"
net "github.com/libp2p/go-libp2p-net" net "github.com/libp2p/go-libp2p-net"
peer "github.com/libp2p/go-libp2p-peer" peer "github.com/libp2p/go-libp2p-peer"
peerstore "github.com/libp2p/go-libp2p-peerstore"
pstore "github.com/libp2p/go-libp2p-peerstore" pstore "github.com/libp2p/go-libp2p-peerstore"
swarm "github.com/libp2p/go-libp2p-swarm" swarm "github.com/libp2p/go-libp2p-swarm"
bhost "github.com/libp2p/go-libp2p/p2p/host/basic" bhost "github.com/libp2p/go-libp2p/p2p/host/basic"
@ -118,7 +117,7 @@ func main() {
// We need to add the target to our peerstore, so we know how we can // We need to add the target to our peerstore, so we know how we can
// contact it // contact it
ha.Peerstore().AddAddr(peerid, tptmaddr, peerstore.PermanentAddrTTL) ha.Peerstore().AddAddr(peerid, tptmaddr, pstore.PermanentAddrTTL)
log.Println("opening stream") log.Println("opening stream")
// make a new stream from host B to host A // make a new stream from host B to host A