Bitcoin Chainstate Leveldb sst

2

I'm trying to read the chainstate, and wrote a small Leveldb client to do so. When I run leveldb, it tells me Corruption: 960 missing files; e.g.: /opt/bitcoin/chainstate/890787.sst. Googling shows that Leveldb uses .sst files, but, I don't see a single one on my machine.

How do I generate these files / repair the chainstate leveldb / access it from a leveldb client?

Manilla

Posted 2016-07-25T23:13:14.320

Reputation: 21

Is Bitcoin Core already running?Pieter Wuille 2016-07-26T06:45:11.783

Answers

1

the default extension is now ldb https://groups.google.com/forum/#!topic/leveldb/u9izbG-pDis

Which library are you using to read leveldb? I suggest you use plyvel. It will be able to read chainstate

dark knight

Posted 2016-07-25T23:13:14.320

Reputation: 1 532