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

@@ -11,7 +11,7 @@
std::string
hexStringToBinaryString(std::string const& hex)
{
auto const blob = ripple::strUnHex(hex);
auto const blob = xrpl::strUnHex(hex);
std::string strBlob;
for (auto c : *blob) // NOLINT(bugprone-unchecked-optional-access)
@@ -20,14 +20,14 @@ hexStringToBinaryString(std::string const& hex)
return strBlob;
}
ripple::uint256
xrpl::uint256
binaryStringToUint256(std::string const& bin)
{
return ripple::uint256::fromVoid(static_cast<void const*>(bin.data()));
return xrpl::uint256::fromVoid(static_cast<void const*>(bin.data()));
}
std::string
ledgerHeaderToBinaryString(ripple::LedgerHeader const& info)
ledgerHeaderToBinaryString(xrpl::LedgerHeader const& info)
{
auto const blob = rpc::ledgerHeaderToBlob(info, true);
std::string strBlob;