From a220b76c3426167d33ff0e064b4b4a25c3854aee Mon Sep 17 00:00:00 2001 From: sneurlax Date: Fri, 15 Sep 2023 14:22:05 -0500 Subject: [PATCH] add todo note about fusion tor service --- lib/services/mixins/fusion_wallet_interface.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/services/mixins/fusion_wallet_interface.dart b/lib/services/mixins/fusion_wallet_interface.dart index 0ddcfa208..8f1689d84 100644 --- a/lib/services/mixins/fusion_wallet_interface.dart +++ b/lib/services/mixins/fusion_wallet_interface.dart @@ -47,7 +47,10 @@ mixin FusionWalletInterface { _torService = TorService.sharedInstance; // Start the Tor service if it's not already running. - if (_torService.proxyInfo.port == -1) { // -1 indicates that the proxy is not running. + // TODO fix this. It will cause all Stack Wallet traffic to start being routed + // through Tor, which is not what we want. + if (_torService.proxyInfo.port == -1) { + // -1 indicates that the proxy is not running. // Initialize the ffi lib instance if it hasn't already been set. _torService.init();