1
0
Fork 0
forked from lthn/blockchain

fixed remote version field

This commit is contained in:
crypro.zoidberg 2019-01-14 23:04:28 +03:00
parent 3f78a841f1
commit 88987ac51a

View file

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