0g-chain/tests/util/kvtool.go
Solovyov1796 2ce418a5eb
Some checks failed
Continuous Integration (Commit) / lint (push) Has been cancelled
migrate from v0.25
2024-08-02 19:32:08 +08:00

12 lines
355 B
Go

package util
import (
"path/filepath"
)
// ZgChainHomePath returns the OS-specific filepath for the 0g-chain home directory
// Assumes network is running with kvtool installed from the sub-repository in tests/e2e/kvtool
func ZgChainHomePath() string {
return filepath.Join("kvtool", "full_configs", "generated", "0gchaind", "initstate", ".0gchain")
}