Browse Source

Final fix for rescue.

cl-refactor
Gav Wood 10 years ago
parent
commit
4cfc62e199
  1. 2
      libethereum/BlockChain.cpp

2
libethereum/BlockChain.cpp

@ -842,7 +842,7 @@ void BlockChain::rescue(OverlayDB& _db)
cout << "details..." << flush;
BlockDetails bd = details(h);
cout << "state..." << flush;
if (_db.exists(sha3(bi.stateRoot)))
if (_db.exists(bi.stateRoot))
break;
}
catch (...) {}

Loading…
Cancel
Save