Merge pull request #3114

fb5c971c Allow retrieving spend key via RPC (Michał Sałaban)
release-v0.4.0.1
Riccardo Spagni 7 years ago
commit 92ea8af34d
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -1319,6 +1319,10 @@ namespace tools
{
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
{
er.message = "key_type " + req.key_type + " not found";

Loading…
Cancel
Save