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/test_bitcoin.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/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index ed74418e3..b1ceef4f6 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); + ProcessNewBlock(state, chainparams, NULL, &block, true, NULL, connman); CBlock result = block; delete pblocktemplate; |