Skip to content

Commit

Permalink
Merge pull request #9339
Browse files Browse the repository at this point in the history
a28c38c wallet2: correct variable usage in get_multisig_seed (selsta)
  • Loading branch information
luigi1111 committed May 21, 2024
2 parents af4fd61 + a28c38c commit 35eb5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 35eb5c1

Please sign in to comment.