@@ -198,7 +198,7 @@ static const unsigned int DEFAULT_CHECKLEVEL = 3;
198
198
// Setting the target to > than 945MB will make it likely we can respect the target.
199
199
static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES = 945 * 1024 * 1024 ;
200
200
201
- /* *
201
+ /* *
202
202
* Process an incoming block. This only returns after the best known valid
203
203
* block is made active. Note that it does not, however, guarantee that the
204
204
* specific block passed to it has been checked for validity!
@@ -209,7 +209,7 @@ static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES = 945 * 1024 * 1024;
209
209
*
210
210
* Note that we guarantee that either the proof-of-work is valid on pblock, or
211
211
* (and possibly also) BlockChecked will have been called.
212
- *
212
+ *
213
213
* @param[in] pblock The block we want to process.
214
214
* @param[in] fForceProcessing Process this block even if unrequested; used for non-network block sources and whitelisted peers.
215
215
* @param[out] dbp The already known disk position of pblock, or NULL if not yet stored.
@@ -263,7 +263,7 @@ bool ActivateBestChain(CValidationState& state, const CChainParams& chainparams,
263
263
264
264
double ConvertBitsToDouble (unsigned int nBits);
265
265
CAmount GetBlockSubsidy (int nBits, int nHeight, const Consensus::Params& consensusParams, bool fSuperblockPartOnly = false );
266
- CAmount GetMasternodePayment (int nHeight, CAmount blockValue);
266
+ CAmount GetMasternodePayment (int nHeight, CAmount blockValue, const Consensus::Params& consensusParams );
267
267
double GetSubsidyMultiplier (int nPrevHeight, int nSubsidyAdjustmentInterval);
268
268
269
269
/* *
@@ -318,7 +318,7 @@ unsigned int GetLegacySigOpCount(const CTransaction& tx);
318
318
319
319
/* *
320
320
* Count ECDSA signature operations in pay-to-script-hash inputs.
321
- *
321
+ *
322
322
* @param[in] mapInputs Map of previous transactions that have outputs we're spending
323
323
* @return maximum number of sigops required to validate this transaction's inputs
324
324
* @see CTransaction::FetchInputs
@@ -381,7 +381,7 @@ bool CheckSequenceLocks(const CTransaction &tx, int flags, LockPoints* lp = NULL
381
381
382
382
/* *
383
383
* Closure representing one script verification
384
- * Note that this stores references to the spending transaction
384
+ * Note that this stores references to the spending transaction
385
385
*/
386
386
class CScriptCheck
387
387
{
0 commit comments