From 5697c1ddad79ec2acc8fd0d93c600d574accc790 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 6 Feb 2025 19:40:37 -0500 Subject: [PATCH] Disable set_confirmable(). --- src/chasers/chaser_confirm.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/chasers/chaser_confirm.cpp b/src/chasers/chaser_confirm.cpp index b8ad9282c..93402e7cb 100644 --- a/src/chasers/chaser_confirm.cpp +++ b/src/chasers/chaser_confirm.cpp @@ -231,11 +231,13 @@ void chaser_confirm::do_bump(height_t) NOEXCEPT return; } - if (!query.set_block_confirmable(link)) - { - fault(error::confirm5); - return; - } + // This is not necessary and may overflow the table link. Faster to + // never do it and redo a tiny number of blocks in case of reorg. + ////if (!query.set_block_confirmable(link)) + ////{ + //// fault(error::confirm5); + //// return; + ////} // Set after if using prevout table. if (prevout_ && !query.set_strong(link))