refactor: Make function naming in ServiceRegistry consistent (#6390)

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
Co-authored-by: Ed Hennis <ed@ripple.com>
This commit is contained in:
Jingchen
2026-03-26 14:11:16 +00:00
committed by GitHub
parent faf69da4b0
commit addc1e8e25
116 changed files with 664 additions and 633 deletions

View File

@@ -775,7 +775,7 @@ AMM::expectAuctionSlot(auto&& cb) const
// to avoid the failure.
auto const slotFee = auctionSlot[~sfDiscountedFee].value_or(0);
auto const slotInterval = ammAuctionTimeSlot(
env_.app().timeKeeper().now().time_since_epoch().count(), auctionSlot);
env_.app().getTimeKeeper().now().time_since_epoch().count(), auctionSlot);
auto const slotPrice = auctionSlot[sfPrice].iou();
auto const authAccounts = auctionSlot.getFieldArray(sfAuthAccounts);
return cb(slotFee, slotInterval, slotPrice, authAccounts);