mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
test: Use ECC_Context helper in bench and fuzz tests
This commit is contained in:
@@ -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;
|
||||
@@ -57,7 +57,6 @@ static void VerifyScriptBench(benchmark::Bench& bench)
|
||||
assert(err == SCRIPT_ERR_OK);
|
||||
assert(success);
|
||||
});
|
||||
ECC_Stop();
|
||||
}
|
||||
|
||||
static void VerifyNestedIfScript(benchmark::Bench& bench)
|
||||
|
||||
Reference in New Issue
Block a user