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();