@@ -44,7 +44,6 @@ chaser_confirm::chaser_confirm(full_node& node) NOEXCEPT
4444 : chaser(node),
4545 threadpool_ (one, node.config().node.priority_()),
4646 independent_strand_(threadpool_.service().get_executor()),
47- concurrent_(node.config().node.concurrent_confirmation),
4847 prevout_(node.archive().prevout_enabled())
4948{
5049}
@@ -92,34 +91,21 @@ bool chaser_confirm::handle_event(const code&, chase event_,
9291 // //{
9392 // // BC_ASSERT(std::holds_alternative<height_t>(value));
9493 // //
95- // // if (concurrent_ || mature_)
96- // // {
97- // // // TODO: value is branch point.
98- // // POST(do_validated, std::get<height_t>(value));
99- // // }
100- // //
94+ // // // TODO: value is branch point.
95+ // // POST(do_validated, std::get<height_t>(value));
10196 // // break;
10297 // //}
10398 case chase::start:
10499 case chase::bump:
105100 {
106- if (concurrent_ || mature_)
107- {
108- POST (do_bump, height_t {});
109- }
110-
101+ POST (do_bump, height_t {});
111102 break ;
112103 }
113104 case chase::valid:
114105 {
115106 // value is validated block height.
116107 BC_ASSERT (std::holds_alternative<height_t >(value));
117-
118- if (concurrent_ || mature_)
119- {
120- POST (do_validated, std::get<height_t >(value));
121- }
122-
108+ POST (do_validated, std::get<height_t >(value));
123109 break ;
124110 }
125111 case chase::regressed:
0 commit comments