mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Validators framework and unit test
This commit is contained in:
@@ -33,7 +33,7 @@ SerializedValidation::SerializedValidation (
|
||||
assert (mNodeID.isNonZero ());
|
||||
|
||||
if (!isFull)
|
||||
setFlag (sFullFlag);
|
||||
setFlag (kFullFlag);
|
||||
}
|
||||
|
||||
void SerializedValidation::sign (const RippleAddress& raPriv)
|
||||
@@ -98,7 +98,7 @@ RippleAddress SerializedValidation::getSignerPublic () const
|
||||
|
||||
bool SerializedValidation::isFull () const
|
||||
{
|
||||
return (getFlags () & sFullFlag) != 0;
|
||||
return (getFlags () & kFullFlag) != 0;
|
||||
}
|
||||
|
||||
Blob SerializedValidation::getSignature () const
|
||||
|
||||
Reference in New Issue
Block a user