What database tables structure do bitcoin uses?

0

What databases do bitcoin core (nodes) uses? And how looks tables structure? I can't find it anywhere...

Michal

Posted 2019-05-19T13:23:01.963

Reputation: 539

LevelDB and BerkeleyDB?MCCCS 2019-05-19T13:50:33.363

1BDB is not used for storing block chain data and is included for historical reasons.Anonymous 2019-05-19T14:23:28.677

Answers

4

There simply is none. There's a key value store in LevelDB for the UTXO, and for miscellaneous things like the locations of block files on disk. Relational databses are far too slow for the task, and unnecessary given the type of information being stored.

Anonymous

Posted 2019-05-19T13:23:01.963

Reputation: 10 054