Merge 10677713ca into merged_master (Bitcoin PR bitcoin/bitcoin#30396)

This commit is contained in:
ikripaka 2026-03-05 15:32:29 +00:00
commit 84b0808f8a
No known key found for this signature in database
16 changed files with 123 additions and 65 deletions

View file

@ -346,7 +346,7 @@ void TestSatisfy(const KeyConverter& converter, const std::string& testcase, con
auto challenges = FindChallenges(node); // Find all challenges in the generated miniscript.
std::vector<Challenge> challist(challenges.begin(), challenges.end());
for (int iter = 0; iter < 3; ++iter) {
Shuffle(challist.begin(), challist.end(), g_insecure_rand_ctx);
std::shuffle(challist.begin(), challist.end(), g_insecure_rand_ctx);
Satisfier satisfier(converter.MsContext());
TestSignatureChecker checker(satisfier);
bool prev_mal_success = false, prev_nonmal_success = false;