Some work on the new binary formats that doesn't break current code.

This commit is contained in:
JoelKatz
2012-09-24 13:04:24 -07:00
parent 02b3bcb089
commit a4070de73e
8 changed files with 156 additions and 26 deletions

View File

@@ -349,14 +349,17 @@ void LedgerEntrySet::calcRawMeta(Serializer& s)
switch (it->second.mAction)
{
case taaMODIFY:
Log(lsTRACE) << "Modified Node " << it->first;
nType = TMNModifiedNode;
break;
case taaDELETE:
Log(lsTRACE) << "Deleted Node " << it->first;
nType = TMNDeletedNode;
break;
case taaCREATE:
Log(lsTRACE) << "Created Node " << it->first;
nType = TMNCreatedNode;
break;