added view_key to wallet RPC command query_key

This commit is contained in:
Jakob Lind 2014-08-05 08:57:08 +02:00
parent da523f30fc
commit 67b91ea769

View file

@ -413,6 +413,10 @@ namespace tools
return false;
}
}
else if(req.key_type.compare("view_key") == 0)
{
res.key = string_tools::pod_to_hex(m_wallet.get_account().get_keys().m_view_secret_key);
}
else
{
er.message = "key_type " + req.key_type + " not found";