We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 344a2c4 commit e6756adCopy full SHA for e6756ad
src/coins.h
@@ -18,7 +18,7 @@
18
#include <stdint.h>
19
20
#include <boost/foreach.hpp>
21
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
22
23
/**
24
* Pruned version of CTransaction: only retains metadata and unspent transaction outputs
@@ -280,7 +280,7 @@ struct CCoinsCacheEntry
280
CCoinsCacheEntry() : coins(), flags(0) {}
281
};
282
283
-typedef boost::unordered_map<uint256, CCoinsCacheEntry, SaltedTxidHasher> CCoinsMap;
+typedef std::unordered_map<uint256, CCoinsCacheEntry, SaltedTxidHasher> CCoinsMap;
284
285
/** Cursor for iterating over CoinsView state */
286
class CCoinsViewCursor
0 commit comments