diff options
Diffstat (limited to 'src/db.cpp')
-rw-r--r-- | src/db.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/db.cpp b/src/db.cpp index 5bd0528202..ecf31de433 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -463,11 +463,6 @@ bool CTxDB::WriteBlockIndex(const CDiskBlockIndex& blockindex) return Write(make_pair(string("blockindex"), blockindex.GetBlockHash()), blockindex); } -bool CTxDB::EraseBlockIndex(uint256 hash) -{ - return Erase(make_pair(string("blockindex"), hash)); -} - bool CTxDB::ReadHashBestChain(uint256& hashBestChain) { return Read(string("hashBestChain"), hashBestChain); |