diff options
| author | Jeff Garzik <[email protected]> | 2013-06-24 06:53:34 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-06-24 06:53:34 -0700 |
| commit | 64225f7ce975521fb99fa9c1ec058057052d812b (patch) | |
| tree | d1384c2d8474c4e1c6e972029bbef812f2ba9e9b /src/test/checkblock_tests.cpp | |
| parent | Merge pull request #2783 from sipa/newtxindex (diff) | |
| parent | Moved CBlock from main.h to core.h (diff) | |
| download | discoin-64225f7ce975521fb99fa9c1ec058057052d812b.tar.xz discoin-64225f7ce975521fb99fa9c1ec058057052d812b.zip | |
Merge pull request #2758 from CodeShark/CBlock-to-core
Finish moving core data structures into core.h.
Diffstat (limited to 'src/test/checkblock_tests.cpp')
| -rw-r--r-- | src/test/checkblock_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/checkblock_tests.cpp b/src/test/checkblock_tests.cpp index d626f9a6f..5675c40e7 100644 --- a/src/test/checkblock_tests.cpp +++ b/src/test/checkblock_tests.cpp @@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE(May15) // After May 15'th, big blocks are OK: forkingBlock.nTime = tMay15; // Invalidates PoW - BOOST_CHECK(forkingBlock.CheckBlock(state, false, false)); + BOOST_CHECK(CheckBlock(forkingBlock, state, false, false)); } SetMockTime(0); |