Changed gapLimit from 24 to 3 since we have mitigated the gap problem.

This commit is contained in:
kennycud 2024-09-03 18:39:41 -07:00
parent 145191075a
commit 454c471dfe

View File

@ -323,7 +323,7 @@ public class Settings {
/* Foreign chains */
/** The number of consecutive empty addresses required before treating a wallet's transaction set as complete */
private int gapLimit = 24;
private int gapLimit = 3;
/** How many wallet keys to generate when using bitcoinj as the blockchain interface (e.g. when sending coins) */
private int bitcoinjLookaheadSize = 50;