mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
22 lines
398 B
C++
22 lines
398 B
C++
#include <string>
|
|
#include "Application.h"
|
|
#include "ScopedLock.h"
|
|
#include "Serializer.h"
|
|
#include "Wallet.h"
|
|
#include "Ledger.h"
|
|
#include "SHAMap.h"
|
|
#include "DeterministicKeys.h"
|
|
|
|
int main()
|
|
{
|
|
theApp = new Application();
|
|
theApp->run();
|
|
|
|
DetKeySet::unitTest();
|
|
Serializer::TestSerializer();
|
|
SHAMapNode::ClassInit();
|
|
SHAMap::TestSHAMap();
|
|
Ledger::unitTest();
|
|
return 0;
|
|
}
|