From a7d45c5a7a46255631bb4814c3df27c3489ff3a0 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 15 May 2012 13:36:25 -0400 Subject: Remove dead code: CTxDB::EraseBlockIndex(), CBlockIndex::EraseBlockFromDisk() --- src/main.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/main.h') diff --git a/src/main.h b/src/main.h index 5ac5547a3e..37af4ff907 100644 --- a/src/main.h +++ b/src/main.h @@ -1130,21 +1130,6 @@ public: return CheckProofOfWork(GetBlockHash(), nBits); } - bool EraseBlockFromDisk() - { - // Open history file - CAutoFile fileout = CAutoFile(OpenBlockFile(nFile, nBlockPos, "rb+"), SER_DISK, CLIENT_VERSION); - if (!fileout) - return false; - - // Overwrite with empty null block - CBlock block; - block.SetNull(); - fileout << block; - - return true; - } - enum { nMedianTimeSpan=11 }; int64 GetMedianTimePast() const -- cgit v1.2.3