3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 18:25:51 +00:00

Remove some remaining mentions of Tor and Orchid.

This commit is contained in:
Andreas Schildbach 2017-08-12 10:14:12 +02:00
parent 80b966d39f
commit 49e6af3bd7
3 changed files with 1 additions and 3 deletions

View File

@ -10,7 +10,6 @@ The bitcoinj library is a Java implementation of the Bitcoin protocol, which all
* Java 6 for the core modules, Java 8 for everything else
* [Maven 3+](http://maven.apache.org) - for building the project
* [Orchid](https://github.com/subgraph/Orchid) - for secure communications over [TOR](https://www.torproject.org)
* [Google Protocol Buffers](https://github.com/google/protobuf) - for use with serialization and hardware communications
### Getting started

View File

@ -28,7 +28,6 @@ import static com.google.common.base.Preconditions.*;
// TODO: Move Threading.USER_THREAD to here and leave behind just a source code stub. Allow different instantiations of the library to use different user threads.
// TODO: Keep a URI to where library internal data files can be found, to abstract over the lack of JAR files on Android.
// TODO: Stash anything else that resembles global library configuration in here and use it to clean up the rest of the API without breaking people.
// TODO: Move the TorClient into Context, so different parts of the library can read data over Tor without having to request it directly. (or maybe a general socket factory??)
/**
* <p>The Context object holds various objects and pieces of configuration that are scoped to a specific instantiation of

View File

@ -15,6 +15,6 @@
*/
/**
* Classes that know how to discover peers in the P2P network using DNS, IRC or DNS via Tor (orchid).
* Classes that know how to discover peers in the P2P network using DNS or HTTP.
*/
package org.bitcoinj.net.discovery;