Skip to content

Commit

Permalink
Use filepath.Join instead of manually joining paths
Browse files Browse the repository at this point in the history
  • Loading branch information
joshklop committed Oct 29, 2024
1 parent 35b2ca8 commit 735d3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/integrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ func startMonomerNode(
rawDB = rawdb.NewMemoryDatabase()
} else {
rawDB, err = rawdb.NewPebbleDBDatabase(
svrCtx.Config.RootDir+"/ethstate",
filepath.Join(svrCtx.Config.RootDir, "ethstate"),
defaultCacheSize,
defaultHandlesSize,
"",
Expand Down

0 comments on commit 735d3d6

Please sign in to comment.