mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix txn signature breakage.
This commit is contained in:
@@ -226,7 +226,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 != sfSignature) && (fName != sfSignatures)))
|
||||
fields.insert(std::make_pair(it.getFName().fieldCode, &it));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user