aboutsummaryrefslogtreecommitdiff
path: root/src/test/Checkpoints_tests.cpp
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2015-06-05 15:36:34 -0400
committerCory Fields <cory-nospam-@coryfields.com>2015-07-28 15:26:50 -0400
commitf0deec572b304663f5f8e93a573f414e563b353f (patch)
tree87d5d6076ecac2cfbac1412fec36ab600eaeb966 /src/test/Checkpoints_tests.cpp
parenteddaba7b5692288087a926da5733e86b47274e4e (diff)
downloadbitcoin-f0deec572b304663f5f8e93a573f414e563b353f.tar.xz
chainparams: move CCheckpointData into chainparams.h
This unties CChainParams from its dependency on checkpoints. Instead, now it only depends on the raw checkpoint data.
Diffstat (limited to 'src/test/Checkpoints_tests.cpp')
-rw-r--r--src/test/Checkpoints_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp
index 703cf307d1..0a23c430ed 100644
--- a/src/test/Checkpoints_tests.cpp
+++ b/src/test/Checkpoints_tests.cpp
@@ -20,7 +20,7 @@ BOOST_FIXTURE_TEST_SUITE(Checkpoints_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(sanity)
{
- const Checkpoints::CCheckpointData& checkpoints = Params(CBaseChainParams::MAIN).Checkpoints();
+ const CCheckpointData& checkpoints = Params(CBaseChainParams::MAIN).Checkpoints();
BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate(checkpoints) >= 134444);
}