mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-23 12:35:50 +00:00
Remove Journal from most Stoppable overrides
This commit is contained in:
@@ -255,19 +255,19 @@ public:
|
||||
// Stoppable
|
||||
//
|
||||
|
||||
void onPrepare (Journal journal)
|
||||
void onPrepare ()
|
||||
{
|
||||
#if RIPPLE_USE_NEW_VALIDATORS
|
||||
journal.info << "Validators preparing";
|
||||
m_journal.info << "Validators preparing";
|
||||
|
||||
addRPCHandlers();
|
||||
#endif
|
||||
}
|
||||
|
||||
void onStart (Journal journal)
|
||||
void onStart ()
|
||||
{
|
||||
#if RIPPLE_USE_NEW_VALIDATORS
|
||||
journal.info << "Validators starting";
|
||||
m_journal.info << "Validators starting";
|
||||
|
||||
// Do this late so the sources have a chance to be added.
|
||||
m_queue.dispatch (bind (&ManagerImp::setCheckSources, this));
|
||||
@@ -276,9 +276,9 @@ public:
|
||||
#endif
|
||||
}
|
||||
|
||||
void onStop (Journal journal)
|
||||
void onStop ()
|
||||
{
|
||||
journal.info << "Validators stopping";
|
||||
m_journal.info << "Validators stopping";
|
||||
|
||||
if (this->Thread::isThreadRunning())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user