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
98
98
const auto chains{CreateBlocks (/* num_not_shared=*/ 1 )};
99
99
assert (chains.num_shared == BLOCK_VTX_COUNT - 1 );
100
100
101
- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
101
+ bench.minEpochIterations (10 ).run ([&]() {
102
102
Reorg (chains);
103
103
});
104
104
}
@@ -109,7 +109,7 @@ static void AddAndRemoveDisconnectedBlockTransactions90(benchmark::Bench& bench)
109
109
const auto chains{CreateBlocks (/* num_not_shared=*/ BLOCK_VTX_COUNT_10PERCENT)};
110
110
assert (chains.num_shared == BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT);
111
111
112
- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
112
+ bench.minEpochIterations (10 ).run ([&]() {
113
113
Reorg (chains);
114
114
});
115
115
}
@@ -120,7 +120,7 @@ static void AddAndRemoveDisconnectedBlockTransactions10(benchmark::Bench& bench)
120
120
const auto chains{CreateBlocks (/* num_not_shared=*/ BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT)};
121
121
assert (chains.num_shared == BLOCK_VTX_COUNT_10PERCENT);
122
122
123
- bench.minEpochIterations (10 ).run ([&]() NO_THREAD_SAFETY_ANALYSIS {
123
+ bench.minEpochIterations (10 ).run ([&]() {
124
124
Reorg (chains);
125
125
});
126
126
}
You can’t perform that action at this time.
0 commit comments