mirror of
https://github.com/monero-project/monero.git
synced 2025-08-06 20:04:23 -04:00
Merge pull request #2279
359517c7
wallet_rpc_server: fix possible privacy leak in on_import_key_images() (Jaquee)20495b27
simplewallet: fix possible privacy leak in import_key_images() (Jaquee)
This commit is contained in:
commit
a861cbb465
2 changed files with 12 additions and 1 deletions
|
@ -1364,7 +1364,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…
Add table
Add a link
Reference in a new issue