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

@@ -54,7 +54,7 @@ struct BackendInterfaceTest : WithPrometheus, MockBackendTestNaggy, SyncAsioCont
TEST_F(BackendInterfaceTest, FetchFeesSuccessPath)
{
using namespace ripple;
using namespace xrpl;
// New fee setting (after XRPFees amendment)
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::fees().key, kMAX_SEQ, _))
@@ -72,7 +72,7 @@ TEST_F(BackendInterfaceTest, FetchFeesSuccessPath)
TEST_F(BackendInterfaceTest, FetchFeesLegacySuccessPath)
{
using namespace ripple;
using namespace xrpl;
// Legacy fee setting (before XRPFees amendment)
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::fees().key, kMAX_SEQ, _))
@@ -90,7 +90,7 @@ TEST_F(BackendInterfaceTest, FetchFeesLegacySuccessPath)
TEST_F(BackendInterfaceTest, FetchLedgerPageSuccessPath)
{
using namespace ripple;
using namespace xrpl;
auto state = etl::SystemState{};
backend_->setCorruptionDetector(etl::CorruptionDetector{state, backend_->cache()});
@@ -107,7 +107,7 @@ TEST_F(BackendInterfaceTest, FetchLedgerPageSuccessPath)
TEST_F(BackendInterfaceTest, FetchLedgerPageDisablesCacheOnMissingData)
{
using namespace ripple;
using namespace xrpl;
auto state = etl::SystemState{};
backend_->setCorruptionDetector(etl::CorruptionDetector{state, backend_->cache()});
@@ -138,7 +138,7 @@ TEST_F(BackendInterfaceTest, FetchLedgerPageDisablesCacheOnMissingData)
TEST_F(BackendInterfaceTest, FetchLedgerPageWithoutCorruptionDetectorDoesNotDisableCacheOnMissingData)
{
using namespace ripple;
using namespace xrpl;
EXPECT_FALSE(backend_->cache().isDisabled());
EXPECT_CALL(*backend_, doFetchSuccessorKey(_, _, _))