Remove CConnman parameter from ProcessNewBlock/ActivateBestChain

This commit is contained in:
Matt Corallo
2016-09-30 18:38:05 -04:00
parent fef1010199
commit f5efa28393
6 changed files with 13 additions and 13 deletions

View File

@@ -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;