Whitespace only.

This commit is contained in:
JoelKatz
2012-06-10 16:16:46 -07:00
parent 63ea3d6f22
commit aed5776c90
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ TransactionMaster::TransactionMaster() : mCache(CACHED_TRANSACTION_NUM, CACHED_T
Transaction::pointer TransactionMaster::fetch(const uint256& txnID, bool checkDisk)
{
Transaction::pointer txn = mCache.fetch(txnID);
if( !checkDisk || txn) return txn;
if (!checkDisk || txn) return txn;
txn = Transaction::load(txnID);
if (!txn) return txn;