style-only: Use using instead of typedef for BlockMap

This commit is contained in:
Carl Dong 2022-01-13 12:38:23 -05:00
parent dd79dad175
commit c2a1655799

View file

@ -56,7 +56,7 @@ extern uint64_t nPruneTarget;
// we ever switch to another associative container, we need to either use a
// container that has stable addressing (true of all std associative
// containers), or make the key a `std::unique_ptr<CBlockIndex>`
typedef std::unordered_map<uint256, CBlockIndex, BlockHasher> BlockMap;
using BlockMap = std::unordered_map<uint256, CBlockIndex, BlockHasher>;
struct CBlockIndexWorkComparator {
bool operator()(const CBlockIndex* pa, const CBlockIndex* pb) const;