diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-12-14 10:55:20 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-12-14 10:56:28 +0100 |
| commit | b68685a16a81729f4d10975171c23c407cd332e3 (patch) | |
| tree | 99c34663d1d6bdb55660979a6bbf5c2b4c404f98 /src/validation.h | |
| parent | Merge #9290: Make RelayWalletTransaction attempt to AcceptToMemoryPool. (diff) | |
| parent | Remove unused CDiskBlockPos* argument from ProcessNewBlock (diff) | |
| download | discoin-b68685a16a81729f4d10975171c23c407cd332e3.tar.xz discoin-b68685a16a81729f4d10975171c23c407cd332e3.zip | |
Merge #9273: Remove unused CDiskBlockPos* argument from ProcessNewBlock
a13fa4c Remove unused CDiskBlockPos* argument from ProcessNewBlock (Matt Corallo)
Diffstat (limited to 'src/validation.h')
| -rw-r--r-- | src/validation.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/validation.h b/src/validation.h index 28e81d21c..e50a82b9d 100644 --- a/src/validation.h +++ b/src/validation.h @@ -229,11 +229,10 @@ static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES = 550 * 1024 * 1024; * * @param[in] pblock The block we want to process. * @param[in] fForceProcessing Process this block even if unrequested; used for non-network block sources and whitelisted peers. - * @param[out] dbp The already known disk position of pblock, or NULL if not yet stored. * @param[out] fNewBlock A boolean which is set to indicate if the block was first received via this call * @return True if state.IsValid() */ -bool ProcessNewBlock(const CChainParams& chainparams, const std::shared_ptr<const CBlock> pblock, bool fForceProcessing, const CDiskBlockPos* dbp, bool* fNewBlock); +bool ProcessNewBlock(const CChainParams& chainparams, const std::shared_ptr<const CBlock> pblock, bool fForceProcessing, bool* fNewBlock); /** * Process incoming block headers. |