Merge pull request #2200
f1b76c84
cryptonote_protocol: Set send_idle_time in connection_info correctly (rbrunner7)
This commit is contained in:
commit
58621e3f65
|
@ -208,7 +208,7 @@ namespace cryptonote
|
|||
cnx.recv_idle_time = timestamp - cntxt.m_last_recv;
|
||||
|
||||
cnx.send_count = cntxt.m_send_cnt;
|
||||
cnx.send_idle_time = timestamp;
|
||||
cnx.send_idle_time = timestamp - cntxt.m_last_send;
|
||||
|
||||
cnx.state = get_protocol_state_string(cntxt.m_state);
|
||||
|
||||
|
|
Loading…
Reference in New Issue