Merge pull request #9339

a28c38c wallet2: correct variable usage in get_multisig_seed (selsta)
This commit is contained in:
luigi1111 2024-05-21 14:36:19 -05:00
commit 35eb5c1174
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 1 additions and 1 deletions

View File

@ -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;