Browse Source

Version bump. Minor fix.

cl-refactor
Gav Wood 10 years ago
parent
commit
ecfe6acc95
  1. 2
      libdevcore/Common.cpp
  2. 3
      libethereum/Client.cpp

2
libdevcore/Common.cpp

@ -27,7 +27,7 @@ using namespace dev;
namespace dev
{
char const* Version = "0.9.7";
char const* Version = "0.9.8";
}

3
libethereum/Client.cpp

@ -332,7 +332,8 @@ void Client::appendFromNewBlock(h256 const& _block, h256Set& io_changed)
void Client::setForceMining(bool _enable)
{
m_forceMining = _enable;
startMining();
if (isMining())
startMining();
}
MiningProgress Client::miningProgress() const

Loading…
Cancel
Save