From fec209eb349c325f44e466d9e40dac9295d62282 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 30 Oct 2022 18:04:12 +0100 Subject: [PATCH] same for wallet --- cashu/wallet/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/wallet/wallet.py b/cashu/wallet/wallet.py index a7ce6ab..48bcf3c 100644 --- a/cashu/wallet/wallet.py +++ b/cashu/wallet/wallet.py @@ -64,7 +64,7 @@ class LedgerAPI: s = requests.Session() s.headers.update({"Client-version": VERSION}) socks_host, socks_port = None, None - if TOR and TorProxy().check_platform(): + if TOR and TorProxy(dont_start=True).check_platform(): self.tor = TorProxy(keep_alive=True) self.tor.wait_until_startup(verbose=True) socks_host, socks_port = "localhost", 9050