connection_context: remove "state_" prefix from state names

It's redundant and makes it easier to print them in columns
release-v0.5.1
moneromooo-monero 6 years ago
parent cd22cb807a
commit 9cc0d4220f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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";
}

Loading…
Cancel
Save