diff --git a/src/Nethermind/Nethermind.Blockchain/Synchronization/SyncConfig.cs b/src/Nethermind/Nethermind.Blockchain/Synchronization/SyncConfig.cs index 546d5017286..3a32656bd0b 100644 --- a/src/Nethermind/Nethermind.Blockchain/Synchronization/SyncConfig.cs +++ b/src/Nethermind/Nethermind.Blockchain/Synchronization/SyncConfig.cs @@ -49,7 +49,7 @@ public string? PivotHash } public int MaxAttemptsToUpdatePivot { get; set; } = int.MaxValue; public bool SnapSync { get; set; } = false; - public int SnapSyncAccountRangePartitionCount { get; set; } = 8; + public int SnapSyncAccountRangePartitionCount { get; set; } = 1024 * 32; public bool FixReceipts { get; set; } = false; public bool FixTotalDifficulty { get; set; } = false; public long FixTotalDifficultyStartingBlock { get; set; } = 1;