-
From #7406 I understand we cannot use geth's levelDb with reth. But why can't reth sync with Erigon (#7915) despite using the same database format? Additionally, I see reth stores a If reth cannot use Erigon's mdbx, is there a way to create the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is no easy way to migrate the erigon or geth format DB to a reth node. Reth uses a static file format for storing immutable data, since it's not desirable to have that data in the database. Reth and erigon use the same database but do not organize data in the same way, and are incompatible as a result. |
Beta Was this translation helpful? Give feedback.
There is no easy way to migrate the erigon or geth format DB to a reth node. Reth uses a static file format for storing immutable data, since it's not desirable to have that data in the database. Reth and erigon use the same database but do not organize data in the same way, and are incompatible as a result.