blob: 4c7c1acdefbd1285f7d48ff4cfd970d1a924826a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//
// Unit tests for block-chain checkpoints
//
#include <boost/assign/list_of.hpp> // for 'map_list_of()'
#include <boost/test/unit_test.hpp>
#include <boost/foreach.hpp>
#include "../checkpoints.h"
#include "../util.h"
using namespace std;
BOOST_AUTO_TEST_SUITE(Checkpoints_tests)
BOOST_AUTO_TEST_CASE(sanity)
{
uint256 p42279 = uint256("0x8444c3ef39a46222e87584ef956ad2c9ef401578bd8b51e8e4b9a86ec3134d3a");
uint256 p42400 = uint256("0x557bb7c17ed9e6d4a6f9361cfddf7c1fc0bdc394af7019167442b41f507252b4");
BOOST_CHECK(Checkpoints::CheckBlock(42279, p42279));
BOOST_CHECK(Checkpoints::CheckBlock(42400, p42400));
// Wrong hashes at checkpoints should fail:
BOOST_CHECK(!Checkpoints::CheckBlock(42279, p42400));
BOOST_CHECK(!Checkpoints::CheckBlock(42400, p42279));
// ... but any hash not at a checkpoint should succeed:
BOOST_CHECK(Checkpoints::CheckBlock(42279+1, p42400));
BOOST_CHECK(Checkpoints::CheckBlock(42400+1, p42279));
BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 42400);
}
BOOST_AUTO_TEST_SUITE_END()
|