diff --git a/src/ripple/app/paths/cursor/DeliverNodeReverse.cpp b/src/ripple/app/paths/cursor/DeliverNodeReverse.cpp index 9e2d0282f..8218f7d66 100644 --- a/src/ripple/app/paths/cursor/DeliverNodeReverse.cpp +++ b/src/ripple/app/paths/cursor/DeliverNodeReverse.cpp @@ -28,8 +28,8 @@ static bool enableDirRestartFix ( std::uint32_t parentCloseTime) { - // Mon Aug 3 11:00:00am PDT - static std::uint32_t const enableAfter = 491940000; + // Mon Aug 10 11:00:00am PDT + static std::uint32_t const enableAfter = 492544800; return parentCloseTime > enableAfter; } diff --git a/src/ripple/app/tx/impl/CreateOffer.cpp b/src/ripple/app/tx/impl/CreateOffer.cpp index b11c914a0..f60d9b1a3 100644 --- a/src/ripple/app/tx/impl/CreateOffer.cpp +++ b/src/ripple/app/tx/impl/CreateOffer.cpp @@ -421,9 +421,9 @@ CreateOffer::format_amount (STAmount const& amount) STAmount CreateOffer::getAccountReserve (SLE::pointer account) { - // Mon Aug 3 11:00:00am PDT + // Mon Aug 10 11:00:00am PDT static NetClock::time_point const switchoverTime ( - std::chrono::seconds (491940000)); + std::chrono::seconds (492544800)); if (ctx_.view().info().parentCloseTime <= switchoverTime.time_since_epoch().count()) return STAmount (ctx_.view().fees().accountReserve( diff --git a/src/ripple/app/tx/impl/Payment.cpp b/src/ripple/app/tx/impl/Payment.cpp index cb6630519..8964b0837 100644 --- a/src/ripple/app/tx/impl/Payment.cpp +++ b/src/ripple/app/tx/impl/Payment.cpp @@ -28,8 +28,8 @@ namespace ripple { // See https://ripple.com/wiki/Transaction_Format#Payment_.280.29 -// Mon Aug 3 11:00:00am PDT -static std::uint32_t const deliverMinTime = 491940000; +// Mon Aug 10 11:00:00am PDT +static std::uint32_t const deliverMinTime = 492544800; bool allowDeliverMin (ApplyView const& view) diff --git a/src/ripple/app/tx/tests/Offer.test.cpp b/src/ripple/app/tx/tests/Offer.test.cpp index d46d3b50a..c03fe4f72 100644 --- a/src/ripple/app/tx/tests/Offer.test.cpp +++ b/src/ripple/app/tx/tests/Offer.test.cpp @@ -41,9 +41,9 @@ public: // would remove the first "taker gets" xrp offer, even though the offer is // still funded and not used for the payment. - // Mon Aug 3 11:00:00am PDT + // Mon Aug 10 11:00:00am PDT static NetClock::time_point const switchoverTime ( - std::chrono::seconds (491940000)); + std::chrono::seconds (492544800)); for(int i=0; i<2; ++i) {