mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Remove RippleAddress:
The RippleAddress class was used to represent a number of fundamentally different types: account public keys, account secret keys, node public keys, node secret keys, seeds and generators. The class is replaced by the following types: * PublicKey for account and node public keys * SecretKey for account and node private keys * Generator for generating secp256k1 accounts * Seed for account, node and generator seeds
This commit is contained in:
@@ -45,10 +45,9 @@ verify (STObject const& st,
|
||||
Serializer ss;
|
||||
ss.add32(prefix);
|
||||
st.addWithoutSigningFields(ss);
|
||||
return pk.verify(
|
||||
return verify(pk,
|
||||
Slice(ss.data(), ss.size()),
|
||||
Slice(sig->data(), sig->size()),
|
||||
true);
|
||||
Slice(sig->data(), sig->size()));
|
||||
}
|
||||
|
||||
// Questions regarding buildMultiSigningData:
|
||||
|
||||
Reference in New Issue
Block a user