aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_basic
diff options
context:
space:
mode:
authorNano Akron <nanoakron@users.noreply.github.com>2017-08-13 03:04:55 +0100
committerNano Akron <nanoakron@users.noreply.github.com>2017-08-15 23:23:26 +0100
commitb59cd0745bde449eb2c9860f8c07b89e764a6441 (patch)
tree0f683ac7e8355ee9e13364794ff9bf92cc22b4aa /src/cryptonote_basic
parentMerge pull request #2297 (diff)
downloadmonero-b59cd0745bde449eb2c9860f8c07b89e764a6441.tar.xz
befor -> before
Really unique yet consistent spelling mistake
Diffstat (limited to 'src/cryptonote_basic')
-rw-r--r--src/cryptonote_basic/connection_context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cryptonote_basic/connection_context.h b/src/cryptonote_basic/connection_context.h
index 06f66120b..5c4cda9eb 100644
--- a/src/cryptonote_basic/connection_context.h
+++ b/src/cryptonote_basic/connection_context.h
@@ -39,12 +39,12 @@ namespace cryptonote
struct cryptonote_connection_context: public epee::net_utils::connection_context_base
{
- cryptonote_connection_context(): m_state(state_befor_handshake), m_remote_blockchain_height(0), m_last_response_height(0),
+ cryptonote_connection_context(): m_state(state_before_handshake), m_remote_blockchain_height(0), m_last_response_height(0),
m_last_known_hash(cryptonote::null_hash) {}
enum state
{
- state_befor_handshake = 0, //default state
+ state_before_handshake = 0, //default state
state_synchronizing,
state_idle,
state_normal
@@ -65,8 +65,8 @@ namespace cryptonote
{
switch (s)
{
- case cryptonote_connection_context::state_befor_handshake:
- return "state_befor_handshake";
+ case cryptonote_connection_context::state_before_handshake:
+ return "state_before_handshake";
case cryptonote_connection_context::state_synchronizing:
return "state_synchronizing";
case cryptonote_connection_context::state_idle: