Compare commits

...

3 Commits

Author SHA1 Message Date
Mayukha Vadari
b50132f641 Merge branch 'develop' into mvadari/fix-stuff 2026-04-02 14:19:08 -04:00
Mayukha Vadari
bb05ae1de3 fix assert in ValidatorList.cpp 2026-04-02 12:35:05 -04:00
Mayukha Vadari
f9c87ae66c Change deletableDirEntryCount to uint32_t 2026-03-25 14:17:29 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -292,7 +292,7 @@ AccountDelete::preclaim(PreclaimContext const& ctx)
if (!cdirFirst(ctx.view, ownerDirKeylet.key, sleDirNode, uDirEntry, dirEntry))
return tesSUCCESS;
std::int32_t deletableDirEntryCount{0};
std::uint32_t deletableDirEntryCount{0};
do
{
// Make sure any directory node types that we find are the kind

View File

@@ -1710,7 +1710,7 @@ ValidatorList::for_each_available(
if (plCollection.status != PublisherStatus::available)
continue;
XRPL_ASSERT(
plCollection.maxSequence != 0,
plCollection.maxSequence.has_value() && *plCollection.maxSequence != 0,
"xrpl::ValidatorList::for_each_available : nonzero maxSequence");
func(
plCollection.rawManifest,