wallet: store key images after importing them

It avoids rescan_spent resetting spent status, for example.
This commit is contained in:
moneromooo-monero 2016-08-17 08:37:56 +01:00
parent 63ba2447e2
commit 25f529aa67
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 3 additions and 0 deletions

View File

@ -3502,6 +3502,9 @@ uint64_t wallet2::import_key_images(const std::vector<std::pair<crypto::key_imag
req.key_images.push_back(epee::string_tools::pod_to_hex(key_image));
}
for (size_t n = 0; n < signed_key_images.size(); ++n)
m_transfers[n].m_key_image = signed_key_images[n].first;
m_daemon_rpc_mutex.lock();
bool r = epee::net_utils::invoke_http_json_remote_command2(m_daemon_address + "/is_key_image_spent", req, daemon_resp, m_http_client, 200000);
m_daemon_rpc_mutex.unlock();