diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-04 10:39:17 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 16:12:32 +0000 |
commit | e36f5b6021eb541d72fee4b2d5643ba42fd4d9dd (patch) | |
tree | e9ba527083a6e99dc8ed2739ca478dc20a77f6cb /src/wallet/wallet_rpc_server.cpp | |
parent | wallet2: fix slow multisig unit tests with subaddress patch (diff) | |
download | monero-e36f5b6021eb541d72fee4b2d5643ba42fd4d9dd.tar.xz |
Match surae's recommendation to derive multisig keys
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 043890fd1..e6e5445b2 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -41,6 +41,7 @@ using namespace epee; #include "common/i18n.h" #include "cryptonote_basic/cryptonote_format_utils.h" #include "cryptonote_basic/account.h" +#include "multisig/multisig.h" #include "wallet_rpc_server_commands_defs.h" #include "misc_language.h" #include "string_coding.h" @@ -2424,11 +2425,10 @@ namespace tools } // people may include their own, weed it out - crypto::hash hash; - crypto::cn_fast_hash(&m_wallet->get_account().get_keys().m_view_secret_key, sizeof(crypto::secret_key), hash); + crypto::secret_key local_skey = cryptonote::get_multisig_blinded_secret_key(m_wallet->get_account().get_keys().m_view_secret_key); for (size_t i = 0; i < secret_keys.size(); ++i) { - if (rct::sk2rct(secret_keys[i]) == rct::hash2rct(hash)) + if (rct::sk2rct(secret_keys[i]) == rct::sk2rct(local_skey)) { secret_keys[i] = secret_keys.back(); public_keys[i] = public_keys.back(); |