Skip to content

Commit

Permalink
Stratum: fixed TLS display in workers command
Browse files Browse the repository at this point in the history
  • Loading branch information
SChernykh committed Dec 17, 2024
1 parent 6dcdbe0 commit 92dfde8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stratum_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,13 +576,13 @@ void StratumServer::show_workers()
}

#ifdef WITH_TLS
const bool is_tls = c->m_tls.is_empty();
const bool is_tls = !c->m_tls.is_empty();
#else
constexpr bool is_tls = false;
#endif

LOGINFO(0, log::pad_right(static_cast<const char*>(c->m_addrString), addr_len + 8)
<< (is_tls ? "no " : "yes ")
<< (is_tls ? "yes " : "no ")
<< log::pad_right(log::Duration(cur_time - c->m_connectedTime), 20)
<< log::pad_right(diff, 20)
<< log::pad_right(log::Hashrate(c->m_autoDiff.lo / AUTO_DIFF_TARGET_TIME, m_autoDiff && (c->m_autoDiff != 0)), 15)
Expand Down

0 comments on commit 92dfde8

Please sign in to comment.