mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
refactor: drop alias that is used only once
This commit is contained in:
parent
1570a02c89
commit
7eb1634686
@ -228,7 +228,6 @@ class CGovernanceManager : public GovernanceStore
|
|||||||
friend class CGovernanceObject;
|
friend class CGovernanceObject;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
using hash_s_t = std::set<uint256>;
|
|
||||||
using db_type = CFlatDB<GovernanceStore>;
|
using db_type = CFlatDB<GovernanceStore>;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -249,7 +248,7 @@ private:
|
|||||||
// keep track of current block height
|
// keep track of current block height
|
||||||
int nCachedBlockHeight;
|
int nCachedBlockHeight;
|
||||||
std::map<uint256, CGovernanceObject> mapPostponedObjects;
|
std::map<uint256, CGovernanceObject> mapPostponedObjects;
|
||||||
hash_s_t setAdditionalRelayObjects;
|
std::set<uint256> setAdditionalRelayObjects;
|
||||||
std::map<uint256, std::chrono::seconds> m_requested_hash_time;
|
std::map<uint256, std::chrono::seconds> m_requested_hash_time;
|
||||||
bool fRateChecksEnabled;
|
bool fRateChecksEnabled;
|
||||||
std::optional<uint256> votedFundingYesTriggerHash;
|
std::optional<uint256> votedFundingYesTriggerHash;
|
||||||
|
Loading…
Reference in New Issue
Block a user