diff --git a/src/settings.cpp b/src/settings.cpp index f8b1382e16..b8501108f7 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -162,7 +162,7 @@ settings::settings(chain::selection context) NOEXCEPT { "000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6", 33333 }, { "0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d", 11111 } }; - milestone = { "00000000000000000001a0a448d6cf2546b06801389cc030b2b18c6491266815", 804000 }; + milestone = { "0000000000000000000320283a032748cef8227873ff4872689bf23f1cda83a5", 840000 }; minimum_work = base16_hash("000000000000000000000000000000000000000052b2559353df4117b7348b64"); break; } diff --git a/test/settings.cpp b/test/settings.cpp index 88eb468f33..6cf315c7fe 100644 --- a/test/settings.cpp +++ b/test/settings.cpp @@ -97,7 +97,7 @@ BOOST_AUTO_TEST_CASE(settings__construct__mainnet_context__expected) BOOST_REQUIRE_EQUAL(configuration.max_money(), 2099999997690000u); BOOST_REQUIRE_EQUAL(configuration.checkpoints, mainnet_checkpoints); BOOST_REQUIRE_EQUAL(configuration.minimum_work, to_uintx(base16_hash("000000000000000000000000000000000000000052b2559353df4117b7348b64"))); - const chain::checkpoint milestone("00000000000000000001a0a448d6cf2546b06801389cc030b2b18c6491266815", 804000u); + const chain::checkpoint milestone("0000000000000000000320283a032748cef8227873ff4872689bf23f1cda83a5", 840000u); BOOST_REQUIRE_EQUAL(configuration.milestone, milestone); }