mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-14 07:03:29 +01:00
Merge pull request #3725
9cc0d42
connection_context: remove state_ prefix from state names (moneromooo-monero)d9d002c
daemon: print peer state in sync_info (moneromooo-monero)
This commit is contained in:
commit
42e7f31613
@ -67,15 +67,15 @@ namespace cryptonote
|
|||||||
switch (s)
|
switch (s)
|
||||||
{
|
{
|
||||||
case cryptonote_connection_context::state_before_handshake:
|
case cryptonote_connection_context::state_before_handshake:
|
||||||
return "state_before_handshake";
|
return "before_handshake";
|
||||||
case cryptonote_connection_context::state_synchronizing:
|
case cryptonote_connection_context::state_synchronizing:
|
||||||
return "state_synchronizing";
|
return "synchronizing";
|
||||||
case cryptonote_connection_context::state_standby:
|
case cryptonote_connection_context::state_standby:
|
||||||
return "state_standby";
|
return "standby";
|
||||||
case cryptonote_connection_context::state_idle:
|
case cryptonote_connection_context::state_idle:
|
||||||
return "state_idle";
|
return "idle";
|
||||||
case cryptonote_connection_context::state_normal:
|
case cryptonote_connection_context::state_normal:
|
||||||
return "state_normal";
|
return "normal";
|
||||||
default:
|
default:
|
||||||
return "unknown";
|
return "unknown";
|
||||||
}
|
}
|
||||||
|
@ -1895,7 +1895,7 @@ bool t_rpc_command_executor::sync_info()
|
|||||||
for (const auto &s: res.spans)
|
for (const auto &s: res.spans)
|
||||||
if (s.rate > 0.0f && s.connection_id == p.info.connection_id)
|
if (s.rate > 0.0f && s.connection_id == p.info.connection_id)
|
||||||
nblocks += s.nblocks, size += s.size;
|
nblocks += s.nblocks, size += s.size;
|
||||||
tools::success_msg_writer() << address << " " << epee::string_tools::pad_string(p.info.peer_id, 16, '0', true) << " " << p.info.height << " " << p.info.current_download << " kB/s, " << nblocks << " blocks / " << size/1e6 << " MB queued";
|
tools::success_msg_writer() << address << " " << epee::string_tools::pad_string(p.info.peer_id, 16, '0', true) << " " << epee::string_tools::pad_string(p.info.state, 16) << " " << p.info.height << " " << p.info.current_download << " kB/s, " << nblocks << " blocks / " << size/1e6 << " MB queued";
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t total_size = 0;
|
uint64_t total_size = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user