Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/chasers/chaser_validate_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ code chaser_validate::do_process_batch(bool startup) NOEXCEPT

if (!startup)
{
LOGN(log_rate("Batch verify rate ecdsa.... ", ecdsa,
LOGN(log_rate("Verify ecdsa.....", ecdsa,
duration_cast<milliseconds>(elapsed).count()));
}

Expand All @@ -152,7 +152,7 @@ code chaser_validate::do_process_batch(bool startup) NOEXCEPT

if (!startup)
{
LOGN(log_rate("Batch verify rate schnorr.. ", schnorr,
LOGN(log_rate("Verify schnorr...", schnorr,
duration_cast<milliseconds>(elapsed).count()));
}

Expand Down Expand Up @@ -259,7 +259,7 @@ std::string chaser_validate::log_rate(const std::string& name,
size_t signatures, size_t milliseconds) const NOEXCEPT
{
const auto rate = (signatures * 1000u) / greater(milliseconds, one);
return (boost_format("%1% (%2% / %3%ms) = %4% sps") %
return (boost_format("%1% (%2% / %3% ms) = %4% sps") %
name % signatures % (milliseconds) % rate).str();
}

Expand Down
8 changes: 4 additions & 4 deletions src/chasers/chaser_validate_capture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,13 @@ std::string chaser_validate::log_ratio(const std::string& name,

void chaser_validate::log_captures() const NOEXCEPT
{
LOGN(log_ratio("Capture ecdsa.... ", counters_.ecdsa_,
LOGN(log_ratio("Capture ecdsa....", counters_.ecdsa_,
counters_.ecdsa_ + counters_.missed_ecdsa_));
LOGN(log_ratio("Capture multisig. ", counters_.multisig_,
LOGN(log_ratio("Capture multisig.", counters_.multisig_,
counters_.multisig_ + counters_.missed_multisig_));
LOGN(log_ratio("Capture schnorr.. ", counters_.schnorr_,
LOGN(log_ratio("Capture schnorr..", counters_.schnorr_,
counters_.schnorr_ + counters_.missed_schnorr_));
LOGN(log_ratio("Capture threshold ", counters_.threshold_,
LOGN(log_ratio("Capture threshold", counters_.threshold_,
counters_.threshold_ + zero));
}

Expand Down
Loading