Browse Source

Avoid crash on rescue.

cl-refactor
Gav Wood 10 years ago
parent
commit
06030dc20c
  1. 2
      libethereum/Client.h

2
libethereum/Client.h

@ -220,7 +220,7 @@ public:
/// Rewind to a prior head.
void rewind(unsigned _n) { m_bc.rewind(_n); }
/// Rescue the chain.
void rescue() { m_bc.rescue(m_stateDB); }
void rescue() { stopWorking(); m_bc.rescue(m_stateDB); }
protected:
/// InterfaceStub methods

Loading…
Cancel
Save