wallet_rpc_server: fix possible privacy leak in on_import_key_images()

pull/95/head
Jaquee 7 years ago
parent 20495b27e8
commit 359517c7f5

@ -1360,7 +1360,12 @@ namespace tools
er.message = "Command unavailable in restricted mode.";
return false;
}
if (!m_trusted_daemon)
{
er.code = WALLET_RPC_ERROR_CODE_UNKNOWN_ERROR;
er.message = "This command requires a trusted daemon.";
return false;
}
try
{
std::vector<std::pair<crypto::key_image, crypto::signature>> ski;

Loading…
Cancel
Save