We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42e82d commit c77e310Copy full SHA for c77e310
src/bench/readwriteblock.cpp
@@ -27,7 +27,7 @@ static CBlock CreateTestBlock()
27
return block;
28
}
29
30
-static void SaveBlockBench(benchmark::Bench& bench)
+static void WriteBlockBench(benchmark::Bench& bench)
31
{
32
const auto testing_setup{MakeNoLogFileContext<const TestingSetup>(ChainType::MAIN)};
33
auto& blockman{testing_setup->m_node.chainman->m_blockman};
@@ -63,6 +63,6 @@ static void ReadRawBlockBench(benchmark::Bench& bench)
63
});
64
65
66
-BENCHMARK(SaveBlockBench, benchmark::PriorityLevel::HIGH);
+BENCHMARK(WriteBlockBench, benchmark::PriorityLevel::HIGH);
67
BENCHMARK(ReadBlockBench, benchmark::PriorityLevel::HIGH);
68
BENCHMARK(ReadRawBlockBench, benchmark::PriorityLevel::HIGH);
0 commit comments