diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-04 08:19:29 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-04 08:19:29 +0100 |
commit | 663fc32809febb19fed247eff1291226fee72e34 (patch) | |
tree | d61dca565aabe0ef26bef2686c11f7f641adb690 /src | |
parent | Merge pull request #937 (diff) | |
download | monero-663fc32809febb19fed247eff1291226fee72e34.tar.xz |
wallet2: if importing key images fails, print failure index
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 43dedaf82..892f6e4bf 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3369,7 +3369,8 @@ uint64_t wallet2::import_key_images(const std::vector<std::pair<crypto::key_imag std::vector<const crypto::public_key*> pkeys; pkeys.push_back(&pkey); THROW_WALLET_EXCEPTION_IF(!crypto::check_ring_signature((const crypto::hash&)key_image, key_image, pkeys, &signature), - error::wallet_internal_error, "Signature check failed: key image " + epee::string_tools::pod_to_hex(key_image) + error::wallet_internal_error, "Signature check failed: input " + boost::lexical_cast<std::string>(n) + "/" + + boost::lexical_cast<std::string>(signed_key_images.size()) + ", key image " + epee::string_tools::pod_to_hex(key_image) + ", signature " + epee::string_tools::pod_to_hex(signature) + ", pubkey " + epee::string_tools::pod_to_hex(*pkeys[0])); req.key_images.push_back(epee::string_tools::pod_to_hex(key_image)); |