diff --git a/src/xrpld/app/main/Application.cpp b/src/xrpld/app/main/Application.cpp index 3a5df93cd8..18db9d49a7 100644 --- a/src/xrpld/app/main/Application.cpp +++ b/src/xrpld/app/main/Application.cpp @@ -1150,8 +1150,8 @@ ApplicationImp::setup(boost::program_options::variables_map const& cmdline) // read threads) are started here because they use their own // threading and do not contend with io_context setup work. - m_resourceManager->start(); - m_nodeStore->startReadThreads(); + resourceManager_->start(); + nodeStore_->startReadThreads(); // We want to intercept CTRL-C and the standard termination signal SIGTERM // and terminate the process. This handler will NEVER be invoked twice.