Fix chaindata and add hardcoded paths #4

Merged
telackey merged 7 commits from fix-chaindata into main 2023-09-25 22:51:55 +00:00
3 changed files with 1 additions and 1 deletions
Showing only changes of commit 7cd43d1488 - Show all commits

Binary file not shown.

Binary file not shown.

View File

@ -28,7 +28,7 @@ func testReadChainData(t *testing.T, data *chaindata.Paths) {
}
header := rawdb.ReadHeader(edb, hash, *height)
if header == nil {
t.Fatalf("unable to read canonical header at height %d", height)
t.Fatalf("unable to read canonical header at height %d", *height)
}
sdb := state.NewDatabase(edb)
tree, err := sdb.OpenTrie(header.Root)