chore: Update libxrpl to 3.2.0 (#3114)

This commit is contained in:
Sergey Kuznetsov
2026-06-25 11:19:12 +01:00
committed by GitHub
parent 3673586be3
commit 9b04d64a0e
257 changed files with 6174 additions and 6312 deletions

View File

@@ -35,9 +35,9 @@ ExampleTransactionsMigrator::runMigration(
.jobsNum = jobsFullScan,
.cursorsPerJob = cursorPerJobsFullScan},
migration::cassandra::impl::TransactionsAdapter(
backend, [&](ripple::STTx const& tx, ripple::TxMeta const&) {
hashSet.lock()->insert(ripple::to_string(tx.getTransactionID()));
auto const json = tx.getJson(ripple::JsonOptions::none);
backend, [&](xrpl::STTx const& tx, xrpl::TxMeta const&) {
hashSet.lock()->insert(xrpl::to_string(tx.getTransactionID()));
auto const json = tx.getJson(xrpl::JsonOptions::Values::None);
auto const txType = json["TransactionType"].asString();
backend->writeTxIndexExample(uint256ToString(tx.getTransactionID()), txType);
}