From cee7593876146714de6d73e4fcf031486496e9d1 Mon Sep 17 00:00:00 2001 From: adityapk00 Date: Mon, 12 Nov 2018 19:19:20 -0800 Subject: [PATCH] #44 - add mainnet.z.cash to default conf --- src/connection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connection.cpp b/src/connection.cpp index 68aef68..a8aacb2 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -107,6 +107,7 @@ void ConnectionLoader::createZcashConf() { QTextStream out(&file); out << "server=1\n"; + out << "addnode=mainnet.z.cash\n"; out << "rpcuser=zec-qt-wallet\n"; out << "rpcpassword=" % randomPassword() << "\n"; file.close();