fix: correct DBRegion constructor to use config.DBBlockCount
- Change from hardcoded blockCount=1 to config.DBBlockCount
- Ensures correct number of DB blocks are created per configuration
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| | |
| | | _config = config ?? throw new ArgumentNullException(nameof(config)); |
| | | |
| | | _mRegion = new MRegion(config.MRegionSize); |
| | | _dbRegion = new DBRegion(1, config.DBBlockSize); |
| | | _dbRegion = new DBRegion((ushort)config.DBBlockCount, config.DBBlockSize); |
| | | _iRegion = new IRegion(config.IRegionSize); |
| | | _qRegion = new QRegion(config.QRegionSize); |
| | | _tRegion = new TRegion(config.TRegionCount); |