From da635462bf1cc7fa5794392aab7ebea1f6f3c0a7 Mon Sep 17 00:00:00 2001 From: Eric Voskuil Date: Tue, 4 Aug 2026 17:53:47 -0400 Subject: [PATCH] Make header tree release effective on all platforms. --- include/bitcoin/node/impl/chasers/chaser_organize.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bitcoin/node/impl/chasers/chaser_organize.ipp b/include/bitcoin/node/impl/chasers/chaser_organize.ipp index ed848000..567ac21a 100644 --- a/include/bitcoin/node/impl/chasers/chaser_organize.ipp +++ b/include/bitcoin/node/impl/chasers/chaser_organize.ipp @@ -620,7 +620,7 @@ void CLASS::shrink_tree(bool current) NOEXCEPT return; shrunk_ = true; - tree_.rehash(zero); + tree_ = { tree_.begin(), tree_.end() }; LOGV("Tree buckets reduced to (" << tree_.bucket_count() << ")."); }