reverting throw exception instead of raising SIGINT in order not to terminate cli_test early

This commit is contained in:
Valera Cogut 2018-07-30 17:52:56 +03:00
parent 8174558041
commit ec41a06300

View file

@ -107,6 +107,11 @@ void cli::run()
catch ( const fc::exception& e )
{
std::cout << e.to_detail_string() << "\n";
if (e.code() == fc::canceled_exception_code)
{
break;
}
}
}
}