diff options
author | Matt Corallo <git@bluematt.me> | 2016-12-04 00:23:17 -0800 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2016-12-04 00:23:17 -0800 |
commit | a13fa4c80f792ffba8a77737754506aa849929af (patch) | |
tree | 48ed3e70b0770472932cb6ae8cb532fd9c1d8bfc /src/test/test_bitcoin.cpp | |
parent | dd0df81ebdbf705f7ad386c7229bf1bbc3125f62 (diff) |
Remove unused CDiskBlockPos* argument from ProcessNewBlock
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 139389117a..dc459bed0d 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -128,7 +128,7 @@ TestChain100Setup::CreateAndProcessBlock(const std::vector<CMutableTransaction>& while (!CheckProofOfWork(block.GetHash(), block.nBits, chainparams.GetConsensus())) ++block.nNonce; std::shared_ptr<const CBlock> shared_pblock = std::make_shared<const CBlock>(block); - ProcessNewBlock(chainparams, shared_pblock, true, NULL, NULL); + ProcessNewBlock(chainparams, shared_pblock, true, NULL); CBlock result = block; return result; |