diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-05-21 14:36:19 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-05-21 14:36:19 -0500 |
commit | 35eb5c117454ef3a12f457af9b567a1f138d8f1e (patch) | |
tree | 67d913b246b518866abd254eedf1f464e6594233 | |
parent | Merge pull request #9316 (diff) | |
parent | wallet2: correct variable usage in get_multisig_seed (diff) | |
download | monero-35eb5c117454ef3a12f457af9b567a1f138d8f1e.tar.xz |
Merge pull request #9339
a28c38c wallet2: correct variable usage in get_multisig_seed (selsta)
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 621b7ac61..9b09d0920 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1456,7 +1456,7 @@ bool wallet2::get_multisig_seed(epee::wipeable_string& seed, const epee::wipeabl return false; } - const uint64_t num_expected_ms_keys = num_priv_multisig_keys_post_setup(threshold, total); + const uint64_t num_expected_ms_keys = num_priv_multisig_keys_post_setup(ms_status.threshold, ms_status.total); crypto::secret_key skey; crypto::public_key pkey; |