mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
Merge pull request #2200
f1b76c84
cryptonote_protocol: Set send_idle_time in connection_info correctly (rbrunner7)
This commit is contained in:
commit
58621e3f65
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue