Browse Source

Silly shadow bug fix.

cl-refactor
Gav Wood 10 years ago
parent
commit
09094cbc07
  1. 2
      libethereum/Miner.h

2
libethereum/Miner.h

@ -164,8 +164,6 @@ private:
/// Do some work on the mining. /// Do some work on the mining.
virtual void doWork(); virtual void doWork();
MinerHost* m_host = nullptr; ///< Our host.
enum MiningStatus { Waiting, Preparing, Mining, Mined, Stopping, Stopped }; enum MiningStatus { Waiting, Preparing, Mining, Mined, Stopping, Stopped };
MiningStatus m_miningStatus = Waiting; ///< TODO: consider mutex/atomic variable. MiningStatus m_miningStatus = Waiting; ///< TODO: consider mutex/atomic variable.
State m_mineState; ///< The state on which we are mining, generally equivalent to m_postMine. State m_mineState; ///< The state on which we are mining, generally equivalent to m_postMine.

Loading…
Cancel
Save