From 12571798f0fe7314dc838ce528dfb5bf3e576b68 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Tue, 9 Jun 2020 23:40:47 -0400 Subject: [PATCH] Default consolidation to ON --- src/connection.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/connection.cpp b/src/connection.cpp index 6936a6e..8547820 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -215,6 +215,9 @@ void ConnectionLoader::createZcashConf() { out << "rpcworkqueue=256\n"; out << "rpcallowip=127.0.0.1\n"; + // Consolidation is now defaulted to ON for new wallets + out << "consolidation=1\n"; + if (!datadir.isEmpty()) { out << "datadir=" % datadir % "\n"; }