connection_context: remove "state_" prefix from state names

It's redundant and makes it easier to print them in columns
This commit is contained in:
moneromooo-monero 2018-04-28 19:55:23 +01:00
parent cd22cb807a
commit 9cc0d4220f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 5 additions and 5 deletions

View File

@ -67,15 +67,15 @@ namespace cryptonote
switch (s)
{
case cryptonote_connection_context::state_before_handshake:
return "state_before_handshake";
return "before_handshake";
case cryptonote_connection_context::state_synchronizing:
return "state_synchronizing";
return "synchronizing";
case cryptonote_connection_context::state_standby:
return "state_standby";
return "standby";
case cryptonote_connection_context::state_idle:
return "state_idle";
return "idle";
case cryptonote_connection_context::state_normal:
return "state_normal";
return "normal";
default:
return "unknown";
}