Skip to content

Commit 48a1cde

Browse files
committed
real fix and new version 2.0.7
1 parent 526e122 commit 48a1cde

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
99
#define CLIENT_VERSION_MAJOR 2
1010
#define CLIENT_VERSION_MINOR 0
11-
#define CLIENT_VERSION_REVISION 6
11+
#define CLIENT_VERSION_REVISION 7
1212
#define CLIENT_VERSION_BUILD 0
1313

1414
// Converts the parameter X to a string after macro replacement on X has been performed.

src/main.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,6 @@ bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txinde
269269
if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
270270
return false;
271271

272-
// Fix for PoW txns between 835001 and LAST_POW_BLOCK
273-
if (txindexRet.pos.nTxPos - txindexRet.pos.nBlockPos == 82)
274-
txindexRet.pos.nTxPos -= 1;
275-
276272
if (!ReadFromDisk(txindexRet.pos))
277273
return false;
278274
if (prevout.n >= vout.size())

0 commit comments

Comments
 (0)