mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-15 11:58:30 +00:00
Orchid: fix typo in init string
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
package com.subgraph.orchid.circuits;
|
||||
|
||||
import com.subgraph.orchid.Tor;
|
||||
import com.subgraph.orchid.TorInitializationListener;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
@@ -7,9 +10,6 @@ import java.util.Map;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import com.subgraph.orchid.Tor;
|
||||
import com.subgraph.orchid.TorInitializationListener;
|
||||
|
||||
public class TorInitializationTracker {
|
||||
private final static Logger logger = Logger.getLogger(TorInitializationTracker.class.getName());
|
||||
private final static Map<Integer, String> messageMap = new HashMap<Integer, String>();
|
||||
@@ -19,7 +19,7 @@ public class TorInitializationTracker {
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_CONN_DIR, "Connecting to directory server");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_HANDSHAKE_DIR, "Finishing handshake with directory server");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_ONEHOP_CREATE, "Establishing an encrypted directory connection");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_REQUESTING_STATUS, "Asking for networkstatus consensus");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_REQUESTING_STATUS, "Asking for network status consensus");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_LOADING_STATUS, "Loading networkstatus consensus");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_REQUESTING_KEYS, "Asking for authority key certs");
|
||||
messageMap.put(Tor.BOOTSTRAP_STATUS_LOADING_KEYS, "Loading authority key certs");
|
||||
|
||||
Reference in New Issue
Block a user