Cache size optimizations
This commit is contained in:
@@ -14,7 +14,7 @@ class CCoinsViewDB : public CCoinsView
|
||||
protected:
|
||||
CLevelDB db;
|
||||
public:
|
||||
CCoinsViewDB(bool fMemory = false);
|
||||
CCoinsViewDB(size_t nCacheSize, bool fMemory = false);
|
||||
|
||||
bool GetCoins(uint256 txid, CCoins &coins);
|
||||
bool SetCoins(uint256 txid, const CCoins &coins);
|
||||
@@ -29,7 +29,7 @@ public:
|
||||
class CBlockTreeDB : public CLevelDB
|
||||
{
|
||||
public:
|
||||
CBlockTreeDB(bool fMemory = false);
|
||||
CBlockTreeDB(size_t nCacheSize, bool fMemory = false);
|
||||
private:
|
||||
CBlockTreeDB(const CBlockTreeDB&);
|
||||
void operator=(const CBlockTreeDB&);
|
||||
|
||||
Reference in New Issue
Block a user