Validators work

This commit is contained in:
Vinnie Falco
2013-10-04 00:46:07 -07:00
parent a2aa938e10
commit 678c241962
9 changed files with 431 additions and 235 deletions

View File

@@ -117,9 +117,8 @@ public:
, m_txQueue (TxQueue::New ())
, m_validators (m_rpcServiceManager->add (
Validators::Manager::New (*this, LogJournal::get <ValidatorsLog> ())
))
, m_validators (Validators::Manager::New (
*this, LogJournal::get <ValidatorsLog> ()))
, mFeatures (IFeatures::New (2 * 7 * 24 * 60 * 60, 200)) // two weeks, 200/256
@@ -643,6 +642,8 @@ public:
void onPrepare ()
{
m_rpcServiceManager->add (*m_validators);
prepareValidators ();
}