Browse Source

Immediate queueing of TXs.

cl-refactor
Gav Wood 11 years ago
parent
commit
1c7c291d69
  1. 7
      libethereum/Client.cpp

7
libethereum/Client.cpp

@ -142,8 +142,11 @@ void Client::work()
if (!m_doMine)
m_mined = m_s;
}
if (!m_doMine)
m_mined.sync(m_tq);
if (m_mined.sync(m_tq))
{
changed = true;
m_miningStarted = true;
}
}
if (m_doMine)

Loading…
Cancel
Save