File tree Expand file tree Collapse file tree
include/bitcoin/node/chasers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,8 +69,7 @@ class BCN_API chaser_confirm
6969 size_t top) NOEXCEPT;
7070 void announce (const header_link& link, height_t height) NOEXCEPT;
7171
72- // These are thread safe.
73- const bool filter_;
72+ // This is thread safe.
7473 const bool defer_;
7574};
7675
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
3535
3636chaser_confirm::chaser_confirm (full_node& node) NOEXCEPT
3737 : chaser(node),
38- filter_ (node.archive().filter_enabled()),
3938 defer_ (node.node_settings().defer_confirmation)
4039{
4140}
@@ -144,7 +143,7 @@ void chaser_confirm::do_bumped(height_t) NOEXCEPT
144143 // Guarded by candidate interlock.
145144 size_t fork_point{};
146145 const auto & query = archive ();
147- auto fork = query.get_validated_fork (fork_point, checkpoint (), filter_ );
146+ auto fork = query.get_validated_fork (fork_point, checkpoint ());
148147
149148 // Fork may be empty if candidates were reorganized.
150149 if (fork.empty ())
You can’t perform that action at this time.
0 commit comments