remove edge case where monero could sync over clearnet

This commit is contained in:
Matthew Fosse 2024-03-21 09:33:57 -07:00
parent c34bb5f2c9
commit 9539d04176

View file

@ -63,8 +63,8 @@ class WalletLoadingService {
final status = torViewModel.torConnectionStatus;
if (status == TorConnectionStatus.connected || status == TorConnectionStatus.connecting) {
// connect the node to the tor proxy:
await torViewModel.connectOrDisconnectNodeToProxy(connect: true);
// disconnect from node until tor is started:
await torViewModel.disconnectFromNode();
}
return wallet;