Skip to content

Commit a5664d6

Browse files
committed
Comments.
1 parent 4bf7317 commit a5664d6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/chasers/chaser_confirm.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ using namespace std::placeholders;
3636

3737
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
3838

39-
// Single higher priority thread strand (base class strand uses network pool).
40-
// Higher priority than validator ensures locality to validator reads.
39+
// Independent threadpool and strand (base class strand uses network pool).
4140
chaser_confirm::chaser_confirm(full_node& node) NOEXCEPT
4241
: chaser(node),
4342
threadpool_(one, node.config().node.priority_()),

src/chasers/chaser_validate.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ BC_PUSH_WARNING(NO_VALUE_OR_CONST_REF_SHARED_PTR)
3737
BC_PUSH_WARNING(SMART_PTR_NOT_NEEDED)
3838
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
3939

40-
// Multiple higher priority thread strand (base class strand uses network pool).
41-
// Higher priority than downloader (net) ensures locality to downloader writes.
40+
// Independent threadpool and strand (base class strand uses network pool).
4241
chaser_validate::chaser_validate(full_node& node) NOEXCEPT
4342
: chaser(node),
4443
threadpool_(node.config().node.threads_(), node.config().node.priority_()),

0 commit comments

Comments
 (0)