aboutsummaryrefslogtreecommitdiff
path: root/src/test/miner_tests.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2016-10-02 11:04:49 -0400
committerMatt Corallo <git@bluematt.me>2016-11-09 11:21:45 -0800
commit7c98ce584ec23bcddcba8cdb33efa6547212f6ef (patch)
tree4967bdd0c6147d73bc1512cbf79b8f24c07180e5 /src/test/miner_tests.cpp
parente2e069dabcd7e61e14bb7bceda6c19ec3afa358a (diff)
downloadbitcoin-7c98ce584ec23bcddcba8cdb33efa6547212f6ef.tar.xz
Remove pfrom parameter from ProcessNewBlock
This further decouples ProcessNewBlock from networking/peer logic.
Diffstat (limited to 'src/test/miner_tests.cpp')
-rw-r--r--src/test/miner_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp
index 2762cafa38..e71a4b1ebc 100644
--- a/src/test/miner_tests.cpp
+++ b/src/test/miner_tests.cpp
@@ -223,7 +223,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, false));
+ BOOST_CHECK(ProcessNewBlock(state, chainparams, pblock, true, NULL, NULL));
BOOST_CHECK(state.IsValid());
pblock->hashPrevBlock = pblock->GetHash();
}