mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-13 16:48:08 +00:00
Fixed macOS crash.
This commit is contained in:
parent
21d1e1782f
commit
e3c8d3cf1c
@ -77,6 +77,9 @@ public:
|
||||
const CCheckpointData& Checkpoints() const { return checkpointData; }
|
||||
const ChainTxData& TxData() const { return chainTxData; }
|
||||
void UpdateVersionBitsParameters(Consensus::DeploymentPos d, int64_t nStartTime, int64_t nTimeout);
|
||||
|
||||
virtual ~CChainParams() {}
|
||||
|
||||
protected:
|
||||
CChainParams() {}
|
||||
|
||||
|
@ -214,7 +214,7 @@ public:
|
||||
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CKevaCache &names) override;
|
||||
CCoinsViewCursor *Cursor() const override;
|
||||
size_t EstimateSize() const override;
|
||||
bool ValidateNameDB() const;
|
||||
bool ValidateNameDB() const override;
|
||||
};
|
||||
|
||||
|
||||
|
@ -42,6 +42,8 @@ private:
|
||||
public:
|
||||
explicit PeerLogicValidation(CConnman* connman, CScheduler &scheduler);
|
||||
|
||||
virtual ~PeerLogicValidation() {}
|
||||
|
||||
void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected, const std::vector<CTransactionRef>& vtxConflicted) override;
|
||||
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
||||
void BlockChecked(const CBlock& block, const CValidationState& state) override;
|
||||
|
Loading…
Reference in New Issue
Block a user