scripted-diff: Remove priority_level from BENCHMARK macro

-BEGIN VERIFY SCRIPT-

 sed --in-place --regexp-extended 's/BENCHMARK\(([^,]+), benchmark::PriorityLevel::(HIGH|LOW)\)/BENCHMARK(\1)/g' $( git grep -l PriorityLevel )
 sed --in-place                   's/#define BENCHMARK(n, priority_level)/#define BENCHMARK(n)/g'                ./src/bench/bench.h

-END VERIFY SCRIPT-
This commit is contained in:
MarcoFalke
2026-01-06 17:06:32 +01:00
parent fa790c3eea
commit fa51a28a94
55 changed files with 164 additions and 164 deletions

View File

@@ -100,7 +100,7 @@ static void SignSchnorrWithNullMerkleRoot(benchmark::Bench& bench)
SignSchnorrTapTweakBenchmark(bench, /*use_null_merkle_root=*/true);
}
BENCHMARK(SignTransactionECDSA, benchmark::PriorityLevel::HIGH);
BENCHMARK(SignTransactionSchnorr, benchmark::PriorityLevel::HIGH);
BENCHMARK(SignSchnorrWithMerkleRoot, benchmark::PriorityLevel::HIGH);
BENCHMARK(SignSchnorrWithNullMerkleRoot, benchmark::PriorityLevel::HIGH);
BENCHMARK(SignTransactionECDSA);
BENCHMARK(SignTransactionSchnorr);
BENCHMARK(SignSchnorrWithMerkleRoot);
BENCHMARK(SignSchnorrWithNullMerkleRoot);