Skip to content
Merged
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
10 changes: 6 additions & 4 deletions src/protocols/protocol_block_in.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -785,11 +785,13 @@ void protocol_block_in::handle_stop(code const&) {
inline
bool enabled(size_t height) {
// Vary the reporting performance reporting interval by height.
auto const modulus =
(height < 100000 ? 100 :
(height < 200000 ? 10 : 1));
// auto const modulus =
// (height < 100000 ? 100 :
// (height < 200000 ? 10 : 1));

return height % modulus == 0;
// return height % modulus == 0;

return true;
}

inline
Expand Down
Loading