This commit is contained in:
Nav
2024-07-07 17:50:43 +01:00
parent 1514e89889
commit 3d6e86244b
3 changed files with 4 additions and 9 deletions

View File

@@ -63,13 +63,6 @@ class ValidationService
if (empty($tdf->addressSpaces)) {
$failures[] = 'Missing address spaces';
} elseif (count($tdf->addressSpaces) > 256) {
/*
* We store address space IDs in an std::uint8_t - which should be more than enough (I don't think we'll
* ever support a target with more than 256 address spaces).
*/
$failures[] = 'Too many address spaces (' . count($tdf->addressSpaces) . ')';
}
$processedAddressSpaceKeys = [];