mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Whitespace only.
This commit is contained in:
@@ -1344,7 +1344,7 @@ Json::Value RPCServer::doTx(Json::Value& params)
|
||||
Json::Value ret;
|
||||
uint256 txid(param1);
|
||||
|
||||
Transaction::pointer txn=theApp->getMasterTransaction().fetch(txid, true);
|
||||
Transaction::pointer txn = theApp->getMasterTransaction().fetch(txid, true);
|
||||
|
||||
if (!txn) return RPCError(rpcTXN_NOT_FOUND);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user