Remove an unused argument from ripple::verify

This commit is contained in:
Nik Bougalis
2016-10-07 10:36:26 -07:00
committed by Edward Hennis
parent b55edfa8f0
commit 027b289c91
4 changed files with 6 additions and 7 deletions

View File

@@ -114,11 +114,11 @@ public:
st[sfSigningPubKey] = spk;
sign(st, HashPrefix::manifest, stype, ssk);
BEAST_EXPECT(verify(st, HashPrefix::manifest, spk, true));
BEAST_EXPECT(verify(st, HashPrefix::manifest, spk));
sign(st, HashPrefix::manifest, type, sk, sfMasterSignature);
BEAST_EXPECT(verify(
st, HashPrefix::manifest, pk, true, sfMasterSignature));
st, HashPrefix::manifest, pk, sfMasterSignature));
if (broken)
{