Skip to content

Commit

Permalink
Merge pull request #731 from evoskuil/master
Browse files Browse the repository at this point in the history
Disable set_confirmable().
  • Loading branch information
evoskuil authored Feb 8, 2025
2 parents 3dd2b00 + 5697c1d commit f3a2f18
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/chasers/chaser_confirm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit f3a2f18

Please sign in to comment.