Skip to content

Commit

Permalink
Suspend validation/confimration (WIP).
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed May 28, 2024
1 parent d210aec commit 43be0fe
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/chasers/chaser_validate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,27 +74,27 @@ bool chaser_validate::handle_event(const code&, chase event_,
{
// Track downloaded.
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
case chase::start:
case chase::bump:
{
POST(do_bump, height_t{});
break;
}
case chase::checked:
{
POST(do_checked, possible_narrow_cast<height_t>(value));
break;
}
case chase::regressed:
{
POST(do_regressed, possible_narrow_cast<height_t>(value));
break;
}
case chase::disorganized:
{
POST(do_disorganized, possible_narrow_cast<height_t>(value));
break;
}
////case chase::start:
////case chase::bump:
////{
//// POST(do_bump, height_t{});
//// break;
////}
////case chase::checked:
////{
//// POST(do_checked, possible_narrow_cast<height_t>(value));
//// break;
////}
////case chase::regressed:
////{
//// POST(do_regressed, possible_narrow_cast<height_t>(value));
//// break;
////}
////case chase::disorganized:
////{
//// POST(do_disorganized, possible_narrow_cast<height_t>(value));
//// break;
////}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

case chase::stop:
Expand Down

0 comments on commit 43be0fe

Please sign in to comment.