From 613ee8540282b6cec6ad3d9395292944536ca2fe Mon Sep 17 00:00:00 2001 From: jeffro256 Date: Thu, 7 Aug 2025 20:55:44 -0500 Subject: [PATCH] cryptonote_basic: remove state_idle in connection_context --- src/cryptonote_basic/connection_context.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cryptonote_basic/connection_context.h b/src/cryptonote_basic/connection_context.h index 187e201b6..2252897fa 100644 --- a/src/cryptonote_basic/connection_context.h +++ b/src/cryptonote_basic/connection_context.h @@ -52,7 +52,6 @@ namespace cryptonote state_before_handshake = 0, //default state state_synchronizing, state_standby, - state_idle, state_normal }; @@ -130,8 +129,6 @@ namespace cryptonote return "synchronizing"; case cryptonote_connection_context::state_standby: return "standby"; - case cryptonote_connection_context::state_idle: - return "idle"; case cryptonote_connection_context::state_normal: return "normal"; default: @@ -149,8 +146,6 @@ namespace cryptonote return 's'; case cryptonote_connection_context::state_standby: return 'w'; - case cryptonote_connection_context::state_idle: - return 'i'; case cryptonote_connection_context::state_normal: return 'n'; default: