Skip to content

Commit

Permalink
wallet2: correct variable usage in get_multisig_seed
Browse files Browse the repository at this point in the history
  • Loading branch information
selsta committed May 21, 2024
1 parent af4fd61 commit a28c38c
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 a28c38c

Please sign in to comment.