mirror of
https://github.com/monero-project/monero.git
synced 2025-11-21 08:30:50 -05:00
catch const exceptions
This commit is contained in:
parent
45a1c4c088
commit
a4240d9ffc
4 changed files with 7 additions and 7 deletions
|
|
@ -173,7 +173,7 @@ bool t_command_parser_executor::print_block(const std::vector<std::string>& args
|
|||
uint64_t height = boost::lexical_cast<uint64_t>(arg);
|
||||
return m_executor.print_block_by_height(height);
|
||||
}
|
||||
catch (boost::bad_lexical_cast&)
|
||||
catch (const boost::bad_lexical_cast&)
|
||||
{
|
||||
crypto::hash block_hash;
|
||||
if (parse_hash256(arg, block_hash))
|
||||
|
|
@ -420,7 +420,7 @@ bool t_command_parser_executor::out_peers(const std::vector<std::string>& args)
|
|||
limit = std::stoi(args[0]);
|
||||
}
|
||||
|
||||
catch(std::exception& ex) {
|
||||
catch(const std::exception& ex) {
|
||||
_erro("stoi exception");
|
||||
return false;
|
||||
}
|
||||
|
|
@ -450,7 +450,7 @@ bool t_command_parser_executor::hard_fork_info(const std::vector<std::string>& a
|
|||
try {
|
||||
version = std::stoi(args[0]);
|
||||
}
|
||||
catch(std::exception& ex) {
|
||||
catch(const std::exception& ex) {
|
||||
return false;
|
||||
}
|
||||
if (version <= 0 || version > 255)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue