From aa1cab39ffc2733e4cbc574533457847b15ce845 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sat, 6 Feb 2021 12:57:20 -0500 Subject: [PATCH] Add tls=only just in case --- src/connection.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/connection.cpp b/src/connection.cpp index 355a82a..0c33cd7 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -215,6 +215,10 @@ void ConnectionLoader::createHushConf() { // Consolidation is now defaulted to ON for new wallets out << "consolidation=1\n"; + // This is default behavior for hushd 3.6.1 and newer, + // this helps if older hushd's are being used + out << "tls=only\n"; + if (!datadir.isEmpty()) { out << "datadir=" % datadir % "\n"; }