From 7e6f6f6db403d684fb36b1a04230274cba66cfaa Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Fri, 9 Nov 2018 15:00:49 -0800 Subject: [PATCH] remove tab when connecting to external zcashd --- src/connection.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/connection.cpp b/src/connection.cpp index 157118b..f1f1f26 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -291,11 +291,9 @@ void ConnectionLoader::doManualConnect() { } void ConnectionLoader::doRPCSetConnection(Connection* conn) { - if (ezcashd) { - rpc->setEZcashd(ezcashd); - } - + rpc->setEZcashd(ezcashd); rpc->setConnection(conn); + d->accept(); delete this;