fix GetTransaction old key search. how many more iterations do i need to get this thing right?

This commit is contained in:
Miguel Freitas 2013-11-14 01:22:19 -02:00
parent 30992b87c3
commit 3847d74f5d

View File

@ -703,7 +703,7 @@ bool GetTransaction(const std::string &username, CTransaction &txOut, uint256 &h
} else { } else {
break; break;
} }
} while( height > 0 && height <= maxHeight ); } while( height > 0 && height >= maxHeight );
} }
return false; return false;