Temporary fix to some issues caused by transaction flattening.

Will work out details with Arthur.
This commit is contained in:
JoelKatz
2012-09-30 22:42:06 -07:00
parent 11d092b98e
commit 5cc421bc76
5 changed files with 18 additions and 12 deletions

View File

@@ -250,7 +250,7 @@ void STObject::add(Serializer& s, bool withSigningFields) const
if (it.getSType() != STI_NOTPRESENT)
{
SField::ref fName = it.getFName();
if (withSigningFields || ((fName != sfSignature) && (fName != sfSignatures)))
if (withSigningFields || ((fName != sfTxnSignature) && (fName != sfTxnSignatures)))
fields.insert(std::make_pair(it.getFName().fieldCode, &it));
}
}