mirror of
https://github.com/XRPLF/clio.git
synced 2026-07-23 23:20:24 +00:00
chore: Use libxrpl 3.3.0-rc1 (#3144)
This commit is contained in:
@@ -38,7 +38,7 @@ TEST_F(BackendInterfaceTest, FetchFeesSuccessPath)
|
||||
using namespace xrpl;
|
||||
|
||||
// New fee setting (after XRPFees amendment)
|
||||
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::fees().key, kMaxSeq, _))
|
||||
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::feeSettings().key, kMaxSeq, _))
|
||||
.WillRepeatedly(Return(createFeeSettingBlob(XRPAmount(1), XRPAmount(2), XRPAmount(3), 0)));
|
||||
|
||||
runSpawn([this](auto yield) {
|
||||
@@ -56,7 +56,7 @@ TEST_F(BackendInterfaceTest, FetchFeesLegacySuccessPath)
|
||||
using namespace xrpl;
|
||||
|
||||
// Legacy fee setting (before XRPFees amendment)
|
||||
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::fees().key, kMaxSeq, _))
|
||||
EXPECT_CALL(*backend_, doFetchLedgerObject(keylet::feeSettings().key, kMaxSeq, _))
|
||||
.WillRepeatedly(Return(createLegacyFeeSettingBlob(1, 2, 3, 4, 0)));
|
||||
|
||||
runSpawn([this](auto yield) {
|
||||
|
||||
Reference in New Issue
Block a user