From 7d8e02e714d44cf5d0749935f2b4adfdf53fdba8 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Thu, 7 Jun 2018 14:01:52 -0700 Subject: [PATCH] Fix MS15663/15664: Don't set Wallet Status to 'ready' too early --- interface/src/commerce/Wallet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/interface/src/commerce/Wallet.cpp b/interface/src/commerce/Wallet.cpp index 982adb4b5e..e558c1d286 100644 --- a/interface/src/commerce/Wallet.cpp +++ b/interface/src/commerce/Wallet.cpp @@ -531,7 +531,6 @@ bool Wallet::walletIsAuthenticatedWithPassphrase() { // be sure to add the public key so we don't do this over and over _publicKeys.push_back(publicKey.toBase64()); - DependencyManager::get()->setWalletStatus((uint)WalletStatus::WALLET_STATUS_READY); return true; } }