Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-01-10 19:57:56 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-01-11 02:09:00 +0300
commite2ed17c571a7bc9879725fa9b4f5e152b4f019d0 (patch)
treeebcf3a556889a68812d5f5075c2012dfbd82887a
parentd8e32f18d3c2231778f4599901ad0e44f187c777 (diff)
remove old TODOs
-rw-r--r--lib/torrent.js1
-rw-r--r--test/node/cmd.js3
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/torrent.js b/lib/torrent.js
index f7cc21b..77a4b74 100644
--- a/lib/torrent.js
+++ b/lib/torrent.js
@@ -615,7 +615,6 @@ Torrent.prototype._onWire = function (wire, addr) {
if (typeof ut_pex === 'function' && !self.private) {
wire.use(ut_pex())
- // wire.ut_pex.start() // TODO two-way communication
wire.ut_pex.on('peer', function (peer) {
debug('ut_pex: got peer: %s (from %s)', peer, addr)
self.addPeer(peer)
diff --git a/test/node/cmd.js b/test/node/cmd.js
index 94a70cc..8c334b3 100644
--- a/test/node/cmd.js
+++ b/test/node/cmd.js
@@ -103,6 +103,3 @@ test('Command line: webtorrent download <torrent file> (with local content)', fu
t.ok(data.indexOf('successfully') !== -1)
})
})
-
-// TODO: test 'webtorrent download magnet_uri'
-// TODO: test 'webtorrent seed /path/to/file'