Merge 2cedb42a92 into merged_master (Bitcoin PR bitcoin/bitcoin#29252)

This commit is contained in:
ivanlele 2026-02-20 11:47:18 +00:00
commit c38a7c5575
No known key found for this signature in database
33 changed files with 79 additions and 72 deletions

View file

@ -15,7 +15,7 @@
// modified to measure performance of other types of scripts.
static void VerifyScriptBench(benchmark::Bench& bench)
{
ECC_Start();
ECC_Context ecc_context{};
const uint32_t flags{SCRIPT_VERIFY_WITNESS | SCRIPT_VERIFY_P2SH};
const int witnessversion = 0;
@ -58,7 +58,6 @@ static void VerifyScriptBench(benchmark::Bench& bench)
assert(err == SCRIPT_ERR_OK);
assert(success);
});
ECC_Stop();
}
static void VerifyNestedIfScript(benchmark::Bench& bench)