Skip to content

Commit f3a2f18

Browse files
authored
Merge pull request #731 from evoskuil/master
Disable set_confirmable().
2 parents 3dd2b00 + 5697c1d commit f3a2f18

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/chasers/chaser_confirm.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,13 @@ void chaser_confirm::do_bump(height_t) NOEXCEPT
231231
return;
232232
}
233233

234-
if (!query.set_block_confirmable(link))
235-
{
236-
fault(error::confirm5);
237-
return;
238-
}
234+
// This is not necessary and may overflow the table link. Faster to
235+
// never do it and redo a tiny number of blocks in case of reorg.
236+
////if (!query.set_block_confirmable(link))
237+
////{
238+
//// fault(error::confirm5);
239+
//// return;
240+
////}
239241

240242
// Set after if using prevout table.
241243
if (prevout_ && !query.set_strong(link))

0 commit comments

Comments
 (0)