Test
This commit is contained in:
@@ -12,6 +12,13 @@
|
|||||||
class CBlockIndex;
|
class CBlockIndex;
|
||||||
struct CCheckpointData;
|
struct CCheckpointData;
|
||||||
|
|
||||||
|
struct CCheckpointData {
|
||||||
|
MapCheckpoints mapCheckpoints;
|
||||||
|
int64_t nTimeLastCheckpoint;
|
||||||
|
int64_t nTransactionsLastCheckpoint;
|
||||||
|
double fTransactionsPerDay;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Block-chain checkpoints are compiled-in sanity checks.
|
* Block-chain checkpoints are compiled-in sanity checks.
|
||||||
* They are updated every release or three.
|
* They are updated every release or three.
|
||||||
@@ -21,12 +28,6 @@ namespace Checkpoints
|
|||||||
|
|
||||||
typedef std::map<int, uint256> MapCheckpoints;
|
typedef std::map<int, uint256> MapCheckpoints;
|
||||||
|
|
||||||
struct CCheckpointData {
|
|
||||||
MapCheckpoints mapCheckpoints;
|
|
||||||
int64_t nTimeLastCheckpoint;
|
|
||||||
int64_t nTransactionsLastCheckpoint;
|
|
||||||
double fTransactionsPerDay;
|
|
||||||
};
|
|
||||||
bool CheckBlock(const CCheckpointData& data, int nHeight, const uint256& hash);
|
bool CheckBlock(const CCheckpointData& data, int nHeight, const uint256& hash);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user