Refactor NodeStore, add NodeStoreSchedulerService

This commit is contained in:
Vinnie Falco
2013-09-20 00:42:45 -07:00
parent 63de1618e9
commit 85fc59b28b
66 changed files with 2857 additions and 2494 deletions

View File

@@ -269,12 +269,12 @@ int RippleMain::run (int argc, char const* const* argv)
// NOTE: These must be added before the
// Application object is created.
//
NodeStore::addAvailableBackends ();
NodeStore::Database::addAvailableBackends ();
// VFALCO NOTE SqliteBackendFactory is here because it has
// VFALCO NOTE SqliteFactory is here because it has
// dependencies like SqliteDatabase and DatabaseCon
//
NodeStore::addBackendFactory (SqliteBackendFactory::getInstance ());
NodeStore::Database::addFactory (SqliteFactory::getInstance ());
if (! RandomNumbers::getInstance ().initialize ())
{