File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ static void AddAndRemoveDisconnectedBlockTransactionsAll(benchmark::Bench& bench
9898 const auto chains{CreateBlocks (/* num_not_shared=*/ 1 )};
9999 assert (chains.num_shared == BLOCK_VTX_COUNT - 1 );
100100
101- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
101+ bench.minEpochIterations (10 ).run ([&]() {
102102 Reorg (chains);
103103 });
104104}
@@ -109,7 +109,7 @@ static void AddAndRemoveDisconnectedBlockTransactions90(benchmark::Bench& bench)
109109 const auto chains{CreateBlocks (/* num_not_shared=*/ BLOCK_VTX_COUNT_10PERCENT)};
110110 assert (chains.num_shared == BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT);
111111
112- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
112+ bench.minEpochIterations (10 ).run ([&]() {
113113 Reorg (chains);
114114 });
115115}
@@ -120,7 +120,7 @@ static void AddAndRemoveDisconnectedBlockTransactions10(benchmark::Bench& bench)
120120 const auto chains{CreateBlocks (/* num_not_shared=*/ BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT)};
121121 assert (chains.num_shared == BLOCK_VTX_COUNT_10PERCENT);
122122
123- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
123+ bench.minEpochIterations (10 ).run ([&]() {
124124 Reorg (chains);
125125 });
126126}
You can’t perform that action at this time.
0 commit comments