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; final status = torViewModel.torConnectionStatus;
if (status == TorConnectionStatus.connected || status == TorConnectionStatus.connecting) { if (status == TorConnectionStatus.connected || status == TorConnectionStatus.connecting) {
// connect the node to the tor proxy: // disconnect from node until tor is started:
await torViewModel.connectOrDisconnectNodeToProxy(connect: true); await torViewModel.disconnectFromNode();
} }
return wallet; return wallet;