From e234fcb47eb1c2628ac68d8287fc4bdd181c69a7 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 21 May 2026 16:38:02 -0400 Subject: [PATCH] Fix chaser_estimate::do_reorganized, pos vs. push. --- src/chasers/chaser_estimate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chasers/chaser_estimate.cpp b/src/chasers/chaser_estimate.cpp index 7cf975f4..219a6b04 100644 --- a/src/chasers/chaser_estimate.cpp +++ b/src/chasers/chaser_estimate.cpp @@ -233,7 +233,7 @@ void chaser_estimate::do_reorganized(header_t link) NOEXCEPT if (height.value > estimator_->top_height()) return; - if (!estimator_->push(query)) + if (!estimator_->pop(query)) fault(error::estimates_pop2); } }