Rename TransactionEngineResult to TER & work on ripple.

This commit is contained in:
Arthur Britto
2012-08-29 11:58:34 -07:00
parent 354c33f71a
commit d96070f083
7 changed files with 190 additions and 151 deletions

View File

@@ -80,10 +80,10 @@ Ledger::pointer LedgerMaster::closeLedger()
return closingLedger;
}
TransactionEngineResult LedgerMaster::doTransaction(const SerializedTransaction& txn, uint32 targetLedger,
TER LedgerMaster::doTransaction(const SerializedTransaction& txn, uint32 targetLedger,
TransactionEngineParams params)
{
TransactionEngineResult result = mEngine.applyTransaction(txn, params);
TER result = mEngine.applyTransaction(txn, params);
theApp->getOPs().pubTransaction(mEngine.getLedger(), txn, result);
return result;
}