mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Cleanups.
This commit is contained in:
@@ -1104,7 +1104,7 @@ void LedgerConsensus::applyTransaction(TransactionEngine& engine, SerializedTran
|
|||||||
assert(!ledger->hasTransaction(txn->getTransactionID()));
|
assert(!ledger->hasTransaction(txn->getTransactionID()));
|
||||||
failedTransactions.push_back(txn);
|
failedTransactions.push_back(txn);
|
||||||
}
|
}
|
||||||
else if (isTepSuccess(result)) // FIXME: Need to do partial success
|
else if (didApply) // FIXME: Need to do partial success
|
||||||
{
|
{
|
||||||
cLog(lsTRACE) << " success";
|
cLog(lsTRACE) << " success";
|
||||||
assert(ledger->hasTransaction(txn->getTransactionID()));
|
assert(ledger->hasTransaction(txn->getTransactionID()));
|
||||||
|
|||||||
@@ -118,6 +118,7 @@ TER TransactionEngine::applyTransaction(const SerializedTransaction& txn, Transa
|
|||||||
didApply = true;
|
didApply = true;
|
||||||
else if (isTecClaim(terResult) && !isSetBit(params, tapRETRY))
|
else if (isTecClaim(terResult) && !isSetBit(params, tapRETRY))
|
||||||
{ // only claim the transaction fee
|
{ // only claim the transaction fee
|
||||||
|
cLog(lsINFO) << "Reprocessing to only claim fee";
|
||||||
mNodes.clear();
|
mNodes.clear();
|
||||||
|
|
||||||
SLE::pointer txnAcct = entryCache(ltACCOUNT_ROOT, Ledger::getAccountRootIndex(txn.getSourceAccount()));
|
SLE::pointer txnAcct = entryCache(ltACCOUNT_ROOT, Ledger::getAccountRootIndex(txn.getSourceAccount()));
|
||||||
@@ -152,6 +153,7 @@ TER TransactionEngine::applyTransaction(const SerializedTransaction& txn, Transa
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else cLog(lsINFO) << "Not applying transaction";
|
||||||
|
|
||||||
if (didApply)
|
if (didApply)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user