From e3065e6a7b2281739049c4cb0dc738880ee80f62 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 27 Jun 2024 15:38:38 -0400 Subject: [PATCH] Delint. --- include/bitcoin/node/protocols/protocol_block_in_31800.hpp | 2 -- src/chasers/chaser_populate.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/include/bitcoin/node/protocols/protocol_block_in_31800.hpp b/include/bitcoin/node/protocols/protocol_block_in_31800.hpp index 08aa4621..a11c274e 100644 --- a/include/bitcoin/node/protocols/protocol_block_in_31800.hpp +++ b/include/bitcoin/node/protocols/protocol_block_in_31800.hpp @@ -39,7 +39,6 @@ class BCN_API protocol_block_in_31800 protocol_block_in_31800(const SessionPtr& session, const channel_ptr& channel) NOEXCEPT : protocol_performer(session, channel), - maximum_concurrency_(session->config().node.maximum_concurrency_()), top_checkpoint_height_( session->config().bitcoin.top_checkpoint().height()), block_type_(session->config().network.witness_node() ? @@ -92,7 +91,6 @@ class BCN_API protocol_block_in_31800 const job::ptr& job) NOEXCEPT; // These are thread safe. - const size_t maximum_concurrency_; const size_t top_checkpoint_height_; const network::messages::inventory::type_id block_type_; diff --git a/src/chasers/chaser_populate.cpp b/src/chasers/chaser_populate.cpp index f30ba1f3..b790ec9f 100644 --- a/src/chasers/chaser_populate.cpp +++ b/src/chasers/chaser_populate.cpp @@ -54,7 +54,7 @@ code chaser_populate::start() NOEXCEPT } bool chaser_populate::handle_event(const code&, chase event_, - event_value value) NOEXCEPT + event_value) NOEXCEPT { if (closed()) return false;