Allow retrieving spend key via RPC
This commit is contained in:
parent
35d5aa36c9
commit
fb5c971cc6
|
@ -1315,6 +1315,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";
|
||||||
|
|
Loading…
Reference in New Issue