joinmarket: add IRC over Tor

This commit is contained in:
openoms
2020-01-20 00:28:45 +00:00
parent f804da3885
commit 643285ebd6
2 changed files with 23 additions and 1 deletions

View File

@@ -182,7 +182,7 @@ Find a basic introduction at https://www.ocf.berkeley.edu/~ckuehl/tmux/
`$ nano joinmarket.cfg`
* Comment out the clearnet communication channels (place a `#` on the front of the line - means it won`t be used by the script):
```@AdamISZ
```
#host = irc.cyberguerrilla.org
...

View File

@@ -131,6 +131,28 @@ This can be skipped if you connect through Tor (see [below](#tor-connection))
rpc_user = RPC_USERNAME_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
rpc_password = RPC_PASSWORD_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
```
* To make JoinMarket communicate through Tor to the peers comment out the clearnet communication channels (place a `#` on the front of the line - means it won`t be used by the script):
```
#host = irc.cyberguerrilla.org
...
[MESSAGING:server2]
#host = irc.darkscience.net
```
* Uncomment (remove the `#` from front of) the entries related to Tor:
```
#for tor
host = epynixtbonxn4odv34z4eqnlamnpuwfz6uwmsamcqd62si7cbix5hqad.onion
socks5 = true
...
#for tor
host = darksci3bfoka7tw.onion
socks5 = true
```
4) #### activate the python virtual environment:
`$ source jmvenv/bin/activate`