aboutsummaryrefslogtreecommitdiff
path: root/src/bench/rpc_mempool.cpp
diff options
context:
space:
mode:
authorfurszy <matiasfurszyfer@protonmail.com>2022-09-25 12:25:16 -0300
committerfurszy <matiasfurszyfer@protonmail.com>2022-10-20 10:21:04 -0300
commit3da7cd2a762077fa81dc40832d556d8a3fd53674 (patch)
tree49f44b507be86e8190a2397c36db148ea884b8d0 /src/bench/rpc_mempool.cpp
parent05b8c76232dedf938740e8034c725ac16d32974a (diff)
downloadbitcoin-3da7cd2a762077fa81dc40832d556d8a3fd53674.tar.xz
bench: explicitly make all current benchmarks "high" priority
no-functional changes. Only have set the priority level explicitly on every BENCHMARK macro call.
Diffstat (limited to 'src/bench/rpc_mempool.cpp')
-rw-r--r--src/bench/rpc_mempool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/rpc_mempool.cpp b/src/bench/rpc_mempool.cpp
index 0e6fdae3d7..4fdc31ae05 100644
--- a/src/bench/rpc_mempool.cpp
+++ b/src/bench/rpc_mempool.cpp
@@ -40,4 +40,4 @@ static void RpcMempool(benchmark::Bench& bench)
});
}
-BENCHMARK(RpcMempool);
+BENCHMARK(RpcMempool, benchmark::PriorityLevel::HIGH);