Merge pull request #3114

fb5c971c Allow retrieving spend key via RPC (Michał Sałaban)
This commit is contained in:
Riccardo Spagni 2018-01-27 17:24:26 -08:00
commit 92ea8af34d
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

View File

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