diff options
| author | Cory Fields <[email protected]> | 2016-05-26 14:26:01 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-09-08 12:04:35 -0400 |
| commit | 8d58c4d81f18e9a51d11ee354434cf55d03a4add (patch) | |
| tree | 3fd6d59b0e7f8cd037c123c0ebea1ad59a385dcf /src/test/miner_tests.cpp | |
| parent | net: Add rpc error for missing/disabled p2p functionality (diff) | |
| download | discoin-8d58c4d81f18e9a51d11ee354434cf55d03a4add.tar.xz discoin-8d58c4d81f18e9a51d11ee354434cf55d03a4add.zip | |
net: Pass CConnman around as needed
Diffstat (limited to 'src/test/miner_tests.cpp')
| -rw-r--r-- | src/test/miner_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index 15fceb963..d3aa2364d 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -222,7 +222,7 @@ BOOST_AUTO_TEST_CASE(CreateNewBlock_validity) pblock->hashMerkleRoot = BlockMerkleRoot(*pblock); pblock->nNonce = blockinfo[i].nonce; CValidationState state; - BOOST_CHECK(ProcessNewBlock(state, chainparams, NULL, pblock, true, NULL)); + BOOST_CHECK(ProcessNewBlock(state, chainparams, NULL, pblock, true, NULL, connman)); BOOST_CHECK(state.IsValid()); pblock->hashPrevBlock = pblock->GetHash(); } |