diff --git a/lib/electrumx_rpc/electrumx_client.dart b/lib/electrumx_rpc/electrumx_client.dart index d7fb4b464..5f824f9ad 100644 --- a/lib/electrumx_rpc/electrumx_client.dart +++ b/lib/electrumx_rpc/electrumx_client.dart @@ -202,6 +202,7 @@ class ElectrumXClient { // ... But if the killswitch is set, then we throw an exception. throw Exception( "Tor preference and killswitch set but Tor is not enabled, not connecting to ElectrumX"); + // TODO [prio=low]: Restart Tor. Update Tor package for restart feature. } } else { // Get the proxy info from the TorService. diff --git a/lib/electrumx_rpc/rpc.dart b/lib/electrumx_rpc/rpc.dart index 89c1735c2..f2044a141 100644 --- a/lib/electrumx_rpc/rpc.dart +++ b/lib/electrumx_rpc/rpc.dart @@ -213,7 +213,7 @@ class JsonRPC { port, timeout: connectionTimeout, onBadCertificate: (_) => true, - ); // TODO do not automatically trust bad certificates + ); // TODO do not automatically trust bad certificates. } else { _socket = await Socket.connect( host,