Hopefully, handle partial success correctly. Retry engine.

This commit is contained in:
JoelKatz
2013-01-18 10:17:21 -08:00
parent ae51e9d203
commit 79d1727b38
3 changed files with 52 additions and 42 deletions

View File

@@ -113,9 +113,9 @@ TER TransactionEngine::applyTransaction(const SerializedTransaction& txn, Transa
cLog(lsINFO) << "applyTransaction: terResult=" << strToken << " : " << terResult << " : " << strHuman;
if (terResult == tesSUCCESS)
{
didApply = true;
}
else if (isTepSuccess(terResult) && isSetBit(params, tapRETRY))
didApply = true;
else if (isTecClaim(terResult) && !isSetBit(params, tapRETRY))
{ // only claim the transaction fee
cLog(lsINFO) << "Reprocessing to only claim fee";
@@ -155,7 +155,8 @@ TER TransactionEngine::applyTransaction(const SerializedTransaction& txn, Transa
}
}
}
else cLog(lsINFO) << "Not applying transaction";
else
cLog(lsINFO) << "Not applying transaction";
if (didApply)
{