chore: Use libxrpl 3.2.0 (#3095)

This commit is contained in:
Sergey Kuznetsov
2026-06-05 17:48:07 +01:00
committed by GitHub
parent 6bb4953f16
commit 8f3afd09e6
272 changed files with 5916 additions and 6036 deletions

View File

@@ -43,12 +43,12 @@ ExampleObjectsMigrator::runMigration(std::shared_ptr<Backend> const& backend, ut
auto const jobsFullScan = config.get<std::uint32_t>("full_scan_jobs");
auto const cursorPerJobsFullScan = config.get<std::uint32_t>("cursors_per_job");
std::unordered_set<ripple::uint256> idx;
std::unordered_set<xrpl::uint256> idx;
migration::cassandra::impl::ObjectsScanner scanner(
{.ctxThreadsNum = ctxFullScanThreads, .jobsNum = jobsFullScan, .cursorsPerJob = cursorPerJobsFullScan},
migration::cassandra::impl::ObjectsAdapter(backend, [&](std::uint32_t, std::optional<ripple::SLE> sle) {
migration::cassandra::impl::ObjectsAdapter(backend, [&](std::uint32_t, std::optional<xrpl::SLE> sle) {
if (sle.has_value()) {
if (sle->getType() == ripple::ltACCOUNT_ROOT) {
if (sle->getType() == xrpl::ltACCOUNT_ROOT) {
if (!idx.contains(sle->key())) {
ExampleObjectsMigrator::accountCount++;
}