mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
added view_key to wallet RPC command query_key
This commit is contained in:
parent
da523f30fc
commit
67b91ea769
1 changed files with 4 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue