Browse Source

Fix BadRoot exception.

cl-refactor
Gav Wood 10 years ago
parent
commit
f3179aa934
  1. 2
      libethereum/Client.cpp

2
libethereum/Client.cpp

@ -370,7 +370,7 @@ void Client::reopenChain(WithExisting _we)
m_stateDB = State::openDB(Defaults::dbPath(), bc().genesisHash(), _we);
m_preMine = bc().genesisBlock(m_stateDB);
m_postMine = Block(m_stateDB);
m_postMine = m_preMine;
}
if (auto h = m_host.lock())

Loading…
Cancel
Save