Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading