Failsafe kill feature; to be used in case of an exploit against wowlet and/or a bug that results in loss of funds

pull/72/head
dsc 3 years ago
parent f5046cea54
commit 81ec0183ea

@ -465,6 +465,12 @@ void AppContext::onWSMessage(const QJsonObject &msg) {
if(Utils::versionOutdated(WOWLET_VERSION_SEMVER, version_str))
emit versionOutdated(version_str, versionPending);
}
else if(cmd == "kill") {
// used *only* in dire emergencies
auto killme = msg.value("data").toBool();
if(killme)
QCoreApplication::quit();
}
#if defined(HAS_OPENVR)
else if(cmd == "requestPIN") {
auto pin = msg.value("data").toString();

Loading…
Cancel
Save