diff --git a/src/chainparams.h b/src/chainparams.h index 6940ed1b1..2041b2209 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -27,12 +27,6 @@ struct SeedSpec6 { typedef std::map MapCheckpoints; -struct CCheckpointData { - MapCheckpoints mapCheckpoints; - int64_t nTimeLastCheckpoint; - int64_t nTransactionsLastCheckpoint; - double fTransactionsPerDay; -}; /** * CChainParams defines various tweakable parameters of a given instance of the @@ -57,6 +51,12 @@ public: MAX_BASE58_TYPES }; + struct CCheckpointData { + MapCheckpoints mapCheckpoints; + int64_t nTimeLastCheckpoint; + int64_t nTransactionsLastCheckpoint; + double fTransactionsPerDay; + }; const Consensus::Params& GetConsensus() const { return consensus; } const CMessageHeader::MessageStartChars& MessageStart() const { return pchMessageStart; } diff --git a/src/checkpoints.h b/src/checkpoints.h index 3e2cebf98..49aaa66d5 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -12,13 +12,6 @@ class CBlockIndex; struct CCheckpointData; -struct CCheckpointData { - MapCheckpoints mapCheckpoints; - int64_t nTimeLastCheckpoint; - int64_t nTransactionsLastCheckpoint; - double fTransactionsPerDay; -}; - /** * Block-chain checkpoints are compiled-in sanity checks. * They are updated every release or three. @@ -28,6 +21,12 @@ namespace Checkpoints typedef std::map MapCheckpoints; +struct CCheckpointData { + MapCheckpoints mapCheckpoints; + int64_t nTimeLastCheckpoint; + int64_t nTransactionsLastCheckpoint; + double fTransactionsPerDay; +}; bool CheckBlock(const CCheckpointData& data, int nHeight, const uint256& hash);