Remove unused includes.
[novacoin.git] / src / kernel.h
1 // Copyright (c) 2012-2013 The PPCoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef PPCOIN_KERNEL_H
5 #define PPCOIN_KERNEL_H
6
7 #include "main.h"
8 #include "wallet.h"
9
10 // ChainDB upgrade time
11 extern unsigned int nModifierUpgradeTime;
12
13 // MODIFIER_INTERVAL: time to elapse before new modifier is computed
14 extern unsigned int nModifierInterval;
15
16 // MODIFIER_INTERVAL_RATIO:
17 // ratio of group interval length between the last group and the first group
18 static const int MODIFIER_INTERVAL_RATIO = 3;
19
20 // Whether the given block is subject to new modifier protocol
21 bool IsFixedModifierInterval(unsigned int nTimeBlock);
22
23 // Compute the hash modifier for proof-of-stake
24 bool ComputeNextStakeModifier(const CBlockIndex* pindexCurrent, uint64_t& nStakeModifier, bool& fGeneratedStakeModifier);
25
26 // The stake modifier used to hash for a stake kernel is chosen as the stake
27 // modifier about a selection interval later than the coin generating the kernel
28 bool GetKernelStakeModifier(uint256 hashBlockFrom, uint64_t& nStakeModifier);
29
30 // Check whether stake kernel meets hash target
31 // Sets hashProofOfStake on success return
32 bool CheckStakeKernelHash(unsigned int nBits, const CBlock& blockFrom, uint32_t nTxPrevOffset, const CTransaction& txPrev, const COutPoint& prevout, uint32_t nTimeTx, uint256& hashProofOfStake, uint256& targetProofOfStake, bool fPrintProofOfStake=false);
33
34 // Scan given kernel for solutions
35 bool ScanKernelForward(unsigned char *kernel, uint32_t nBits, uint32_t nInputTxTime, int64_t nValueIn, std::pair<uint32_t, uint32_t> &SearchInterval, std::vector<std::pair<uint256, uint32_t> > &solutions);
36
37 // Check kernel hash target and coinstake signature
38 // Sets hashProofOfStake on success return
39 bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hashProofOfStake, uint256& targetProofOfStake);
40
41 // Get stake modifier checksum
42 uint32_t GetStakeModifierChecksum(const CBlockIndex* pindex);
43
44 // Check stake modifier hard checkpoints
45 bool CheckStakeModifierCheckpoints(int nHeight, uint32_t nStakeModifierChecksum);
46
47 // Get time weight using supplied timestamps
48 inline int64_t GetWeight(int64_t nIntervalBeginning, int64_t nIntervalEnd)
49 {
50     // Kernel hash weight starts from 0 at the 30-day min age
51     // this change increases active coins participating the hash and helps
52     // to secure the network when proof-of-stake difficulty is low
53     //
54     // Maximum TimeWeight is 90 days.
55
56     return std::min(nIntervalEnd - nIntervalBeginning - nStakeMinAge, (int64_t)nStakeMaxAge);
57 }
58
59 #endif // PPCOIN_KERNEL_H