diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-11-11 13:58:00 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-11-11 13:50:26 -0500 |
commit | faffa7f0dcc9971cb20534816eccdf75bebc853a (patch) | |
tree | 650378bdc816148c42834432d37e6bc84d4a2508 /src/wallet | |
parent | 8021392b825c74312173f15eb937ba6d4aec3841 (diff) |
wallet: Avoid showing GUI popups on RPC errors (take 2)
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 2f2931cef1..ff182c847f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3651,9 +3651,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(interfaces::Chain& chain, } if (auto spk_man = walletInstance->m_spk_man.get()) { - std::string error; if (!spk_man->Upgrade(prev_version, error)) { - chain.initError(error); return nullptr; } } |