From 5c7c13d76a68ee54c7808faf98c1d9cd7829760d Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 15 Oct 2020 02:19:13 +0200 Subject: [PATCH] Tails: fix slow wallet open --- src/appcontext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/appcontext.cpp b/src/appcontext.cpp index e60282c..3d5aa0a 100644 --- a/src/appcontext.cpp +++ b/src/appcontext.cpp @@ -330,9 +330,9 @@ void AppContext::onWalletOpened(Wallet *wallet) { connect(this->currentWallet, &Wallet::transactionCreated, this, &AppContext::onTransactionCreated); connect(this->currentWallet, &Wallet::connectionStatusChanged, this, &AppContext::onConnectionStatusChanged); - this->nodes->connectToNode(); - emit walletOpened(); + + this->nodes->connectToNode(); this->updateBalance(); #ifdef DONATE_BEG