wallet_rpc_server: fix possible privacy leak in on_import_key_images()

This commit is contained in:
Jaquee 2017-08-11 11:18:21 +02:00
parent 20495b27e8
commit 359517c7f5

View file

@ -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;