Skip to content

Commit 656dd10

Browse files
authored
Merge pull request #1017 from evoskuil/master
Fix chaser_estimate::do_reorganized, pop vs. push.
2 parents bb8aeaf + e234fcb commit 656dd10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/chasers/chaser_estimate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ void chaser_estimate::do_reorganized(header_t link) NOEXCEPT
233233
if (height.value > estimator_->top_height())
234234
return;
235235

236-
if (!estimator_->push(query))
236+
if (!estimator_->pop(query))
237237
fault(error::estimates_pop2);
238238
}
239239
}

0 commit comments

Comments
 (0)