MCPcopy Create free account
hub / github.com/LUX-Core/lux / isActive

Method isActive

src/cpp-ethereum/libethereum/BlockQueue.cpp:535–543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

533}
534
535bool BlockQueue::isActive() const
536{
537 UpgradableGuard l(m_lock);
538 if (m_readySet.empty() && m_drainingSet.empty())
539 DEV_GUARDED(m_verification)
540 if (m_verified.isEmpty() && m_verifying.isEmpty() && m_unverified.isEmpty())
541 return false;
542 return true;
543}
544
545std::ostream& dev::eth::operator<< (std::ostream& os, QueueStatus const& obj)
546{

Callers 8

syncPeerMethod · 0.80
drawMethod · 0.80
drawToPaintBufferMethod · 0.80
paintEventMethod · 0.80
mouseMoveEventMethod · 0.80
mouseReleaseEventMethod · 0.80
toPixmapMethod · 0.80
toPainterMethod · 0.80

Calls 3

DEV_GUARDEDFunction · 0.70
emptyMethod · 0.45
isEmptyMethod · 0.45

Tested by

no test coverage detected