Skip to content

Commit

Permalink
Fix Tor connections (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kaufman authored Feb 20, 2021
1 parent 875d7c5 commit 26ab986
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyinstaller/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyinstaller/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "specter-desktop",
"version": "v0.8.2-pre1",
"version": "v1.2.0",
"description": "Specter Desktop Electron application",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/cryptoadvance/specter/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ def __init__(
self.host = host
self.path = path
self.timeout = timeout
self.proxy_url = (proxy_url,)
self.only_tor = (only_tor,)
self.proxy_url = proxy_url
self.only_tor = only_tor
self.r = None
# session reuse speeds up requests
if session is None:
Expand Down

0 comments on commit 26ab986

Please sign in to comment.