aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_bitcoin.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2016-09-30 18:38:05 -0400
committerMatt Corallo <git@bluematt.me>2016-10-04 13:51:32 -0400
commitf5efa283931ce1d52c59234b58988a221d42ecb4 (patch)
treece892a16f3048f3a378c8a71092bf4f9be557356 /src/test/test_bitcoin.cpp
parentfef1010199b70026fd6d56ebac5c277552757307 (diff)
downloadbitcoin-f5efa283931ce1d52c59234b58988a221d42ecb4.tar.xz
Remove CConnman parameter from ProcessNewBlock/ActivateBestChain
Diffstat (limited to 'src/test/test_bitcoin.cpp')
-rw-r--r--src/test/test_bitcoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp
index 02843d8525..f36c548655 100644
--- a/src/test/test_bitcoin.cpp
+++ b/src/test/test_bitcoin.cpp
@@ -124,7 +124,7 @@ TestChain100Setup::CreateAndProcessBlock(const std::vector<CMutableTransaction>&
while (!CheckProofOfWork(block.GetHash(), block.nBits, chainparams.GetConsensus())) ++block.nNonce;
CValidationState state;
- ProcessNewBlock(state, chainparams, NULL, &block, true, NULL, connman);
+ ProcessNewBlock(state, chainparams, NULL, &block, true, NULL);
CBlock result = block;
delete pblocktemplate;