Skip to content

Commit 83df2f5

Browse files
authored
Merge pull request #1707 from evoskuil/master
Change default mainnet milestone to 900k.
2 parents c06ec36 + f92dbdb commit 83df2f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ settings::settings(chain::selection context) NOEXCEPT
167167
{ "000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6", 33333 },
168168
{ "0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d", 11111 }
169169
};
170-
milestone = { "00000000000000000002a0b5db2a7f8d9087464c2586b546be7bce8eb53b8187", 850000 };
170+
milestone = { "000000000000000000010538edbfd2d5b809a33dd83f284aeea41c6d0d96968a", 900000 };
171171
minimum_work = base16_hash("000000000000000000000000000000000000000052b2559353df4117b7348b64");
172172
break;
173173
}

test/settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ BOOST_AUTO_TEST_CASE(settings__construct__mainnet_context__expected)
101101
BOOST_REQUIRE_EQUAL(configuration.initial_subsidy(), 5'000'000'000_u64);
102102
BOOST_REQUIRE_EQUAL(configuration.checkpoints, mainnet_checkpoints);
103103
BOOST_REQUIRE_EQUAL(configuration.minimum_work, to_uintx(base16_hash("000000000000000000000000000000000000000052b2559353df4117b7348b64")));
104-
const chain::checkpoint milestone("00000000000000000002a0b5db2a7f8d9087464c2586b546be7bce8eb53b8187", 850000u);
104+
const chain::checkpoint milestone("000000000000000000010538edbfd2d5b809a33dd83f284aeea41c6d0d96968a", 900000u);
105105
BOOST_REQUIRE_EQUAL(configuration.milestone, milestone);
106106
}
107107

0 commit comments

Comments
 (0)