wallet2: fix background wallet detection in verify_password()

This commit is contained in:
selsta
2026-04-06 19:33:03 +02:00
parent 99addbcc91
commit b19cd82177
+1 -1
View File
@@ -5444,7 +5444,7 @@ bool wallet2::verify_password(const std::string& keys_file_name, const epee::wip
{
get_custom_background_key(password, key, kdf_rounds);
crypto::chacha20(keys_file_data.account_data.data(), keys_file_data.account_data.size(), key, keys_file_data.iv, &account_data[0]);
const bool is_background_wallet = json.Parse(account_data.c_str()).HasParseError() && json.IsObject();
const bool is_background_wallet = !json.Parse(account_data.c_str()).HasParseError() && json.IsObject();
no_spend_key = no_spend_key || is_background_wallet;
}
}