refactor: drop alias that is used only once

This commit is contained in:
Konstantin Akimov 2024-09-26 02:32:14 +07:00
parent 1570a02c89
commit 7eb1634686
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524

View File

@ -228,7 +228,6 @@ class CGovernanceManager : public GovernanceStore
friend class CGovernanceObject;
private:
using hash_s_t = std::set<uint256>;
using db_type = CFlatDB<GovernanceStore>;
private:
@ -249,7 +248,7 @@ private:
// keep track of current block height
int nCachedBlockHeight;
std::map<uint256, CGovernanceObject> mapPostponedObjects;
hash_s_t setAdditionalRelayObjects;
std::set<uint256> setAdditionalRelayObjects;
std::map<uint256, std::chrono::seconds> m_requested_hash_time;
bool fRateChecksEnabled;
std::optional<uint256> votedFundingYesTriggerHash;