mirror of
https://github.com/monero-project/monero.git
synced 2024-12-22 19:49:30 +00:00
wallet2: correct variable usage in get_multisig_seed
This commit is contained in:
parent
af4fd61fe7
commit
a28c38c946
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue