Don't decrypt keys in view only wallets in wallet_keys_unlocker

This commit is contained in:
Doyle 2019-02-12 10:31:22 +11:00
parent 31bdf7bd11
commit d2c95ab941
1 changed files with 1 additions and 1 deletions

View File

@ -867,7 +867,7 @@ wallet_keys_unlocker::wallet_keys_unlocker(wallet2 &w, const boost::optional<too
w(w),
locked(password != boost::none)
{
if (!locked || w.is_unattended() || w.ask_password() != tools::wallet2::AskPasswordToDecrypt)
if (!locked || w.is_unattended() || w.ask_password() != tools::wallet2::AskPasswordToDecrypt || w.watch_only())
{
locked = false;
return;