From 451b719ffcaf169d22ef42c13bc891955a0ed296 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 23 Nov 2011 12:49:38 -0800 Subject: [PATCH] Transaction::setStatus was missing. --- Transaction.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Transaction.cpp b/Transaction.cpp index 0a2f7f8698..0e5c8608c3 100644 --- a/Transaction.cpp +++ b/Transaction.cpp @@ -91,3 +91,9 @@ void Transaction::updateID() { mTransactionID=getSigned()->getSHA512Half(); } + +void Transaction::setStatus(TransStatus ts, uint32 lseq) +{ + mStatus=ts; + mInLedger=lseq; +}