From 88987ac51a2fa482c325421f75efe5ce196db50e Mon Sep 17 00:00:00 2001 From: "crypro.zoidberg" Date: Mon, 14 Jan 2019 23:04:28 +0300 Subject: [PATCH] fixed remote version field --- src/currency_protocol/currency_protocol_handler.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/currency_protocol/currency_protocol_handler.inl b/src/currency_protocol/currency_protocol_handler.inl index f449fc52..040e73f6 100644 --- a/src/currency_protocol/currency_protocol_handler.inl +++ b/src/currency_protocol/currency_protocol_handler.inl @@ -102,7 +102,7 @@ namespace currency << std::setw(25) << std::to_string(cntxt.m_recv_cnt)+ "(" + std::to_string(time(NULL) - cntxt.m_last_recv) + ")" + "/" + std::to_string(cntxt.m_send_cnt) + "(" + std::to_string(time(NULL) - cntxt.m_last_send) + ")" << std::setw(25) << get_protocol_state_string(cntxt.m_state) << std::setw(20) << std::to_string(time(NULL) - cntxt.m_started) - << std::setw(20) << cntxt.m_priv.m_remote_version + << std::setw(20) << cntxt.m_remote_version << ENDL; return true; });