mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove an unused argument from ripple::verify
This commit is contained in:
committed by
Edward Hennis
parent
b55edfa8f0
commit
027b289c91
@@ -100,11 +100,11 @@ bool Manifest::verify () const
|
||||
STObject st (sfGeneric);
|
||||
SerialIter sit (serialized.data (), serialized.size ());
|
||||
st.set (sit);
|
||||
if (! ripple::verify (st, HashPrefix::manifest, signingKey, true))
|
||||
if (! ripple::verify (st, HashPrefix::manifest, signingKey))
|
||||
return false;
|
||||
|
||||
return ripple::verify (
|
||||
st, HashPrefix::manifest, masterKey, true, sfMasterSignature);
|
||||
st, HashPrefix::manifest, masterKey, sfMasterSignature);
|
||||
}
|
||||
|
||||
uint256 Manifest::hash () const
|
||||
|
||||
Reference in New Issue
Block a user