mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
12 lines
338 B
Go
12 lines
338 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
// KavaHomePath returns the OS-specific filepath for the kava home directory
|
||
|
// Assumes network is running with kvtool installed from the sub-repository in tests/e2e/kvtool
|
||
|
func KavaHomePath() string {
|
||
|
return filepath.Join("kvtool", "full_configs", "generated", "kava", "initstate", ".kava")
|
||
|
}
|