Commit 8eaf6f4c authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4130 from ethereum-optimism/fix/migration-dd-path

op-migrate: use correct ancient path
parents 8381a6f4 182d36c4
......@@ -141,7 +141,7 @@ func main() {
}
chaindataPath := filepath.Join(ctx.String("db-path"), "geth", "chaindata")
ancientPath := filepath.Join(ctx.String("db-path"), "ancient")
ancientPath := filepath.Join(chaindataPath, "ancient")
ldb, err := rawdb.NewLevelDBDatabaseWithFreezer(chaindataPath, int(1024), int(60), ancientPath, "", false)
if err != nil {
return err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment