mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +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:
@@ -23,7 +23,7 @@
|
||||
#include <ripple/app/main/Application.cpp>
|
||||
#include <ripple/app/main/CollectorManager.cpp>
|
||||
#include <ripple/app/main/Main.cpp>
|
||||
#include <ripple/app/main/NodeIdentity.cpp>
|
||||
#include <ripple/app/main/NodeStoreScheduler.cpp>
|
||||
#include <ripple/app/main/DBInit.cpp>
|
||||
#include <ripple/app/main/LoadManager.cpp>
|
||||
#include <ripple/app/main/LocalCredentials.cpp>
|
||||
|
||||
@@ -20,11 +20,8 @@
|
||||
#include <BeastConfig.h>
|
||||
|
||||
#include <ripple/crypto/impl/Base58.cpp>
|
||||
#include <ripple/crypto/impl/Base58Data.cpp>
|
||||
#include <ripple/crypto/impl/CBigNum.cpp>
|
||||
#include <ripple/crypto/impl/ec_key.cpp>
|
||||
#include <ripple/crypto/impl/ECDSA.cpp>
|
||||
#include <ripple/crypto/impl/ECDSACanonical.cpp>
|
||||
#include <ripple/crypto/impl/ECDSAKey.cpp>
|
||||
#include <ripple/crypto/impl/ECIES.cpp>
|
||||
#include <ripple/crypto/impl/GenerateDeterministicKey.cpp>
|
||||
@@ -34,7 +31,6 @@
|
||||
#include <ripple/crypto/impl/RFC1751.cpp>
|
||||
|
||||
#include <ripple/crypto/tests/CKey.test.cpp>
|
||||
#include <ripple/crypto/tests/ECDSACanonical.test.cpp>
|
||||
|
||||
#if DOXYGEN
|
||||
#include <ripple/crypto/README.md>
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
#include <ripple/protocol/impl/PublicKey.cpp>
|
||||
#include <ripple/protocol/impl/Quality.cpp>
|
||||
#include <ripple/protocol/impl/Rate2.cpp>
|
||||
#include <ripple/protocol/impl/RippleAddress.cpp>
|
||||
#include <ripple/protocol/impl/SecretKey.cpp>
|
||||
#include <ripple/protocol/impl/Seed.cpp>
|
||||
#include <ripple/protocol/impl/Serializer.cpp>
|
||||
#include <ripple/protocol/impl/SField.cpp>
|
||||
#include <ripple/protocol/impl/Sign.cpp>
|
||||
@@ -70,8 +70,9 @@
|
||||
#include <ripple/protocol/tests/Issue.test.cpp>
|
||||
#include <ripple/protocol/tests/PublicKey_test.cpp>
|
||||
#include <ripple/protocol/tests/Quality.test.cpp>
|
||||
#include <ripple/protocol/tests/RippleAddress.test.cpp>
|
||||
#include <ripple/protocol/tests/STAccount.test.cpp>
|
||||
#include <ripple/protocol/tests/Seed_test.cpp>
|
||||
#include <ripple/protocol/tests/SecretKey_test.cpp>
|
||||
#include <ripple/protocol/tests/STAmount.test.cpp>
|
||||
#include <ripple/protocol/tests/STObject.test.cpp>
|
||||
#include <ripple/protocol/tests/STTx.test.cpp>
|
||||
|
||||
@@ -90,7 +90,6 @@
|
||||
#include <ripple/rpc/handlers/WalletSeed.cpp>
|
||||
|
||||
#include <ripple/rpc/impl/AccountFromString.cpp>
|
||||
#include <ripple/rpc/impl/Accounts.cpp>
|
||||
#include <ripple/rpc/impl/GetAccountObjects.cpp>
|
||||
#include <ripple/rpc/impl/Handler.cpp>
|
||||
#include <ripple/rpc/impl/KeypairForSignature.cpp>
|
||||
|
||||
Reference in New Issue
Block a user