aboutsummaryrefslogtreecommitdiffstats
path: root/common/path.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:46:21 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:46:21 +0800
commit2477d10aa0ac80b0735f3069a214c804cd6be957 (patch)
tree48a2f82df00ba11542e42a88758876920132bb4a /common/path.go
parentc0741edc34c3d09b69c7a64a97aaca0e7759add1 (diff)
downloadgo-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar.gz
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar.bz2
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar.lz
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar.xz
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.tar.zst
go-tangerine-2477d10aa0ac80b0735f3069a214c804cd6be957.zip
Move MakeName to path
Diffstat (limited to 'common/path.go')
-rw-r--r--common/path.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/path.go b/common/path.go
index 8b95a2be6..d38b1fd5b 100644
--- a/common/path.go
+++ b/common/path.go
@@ -1,6 +1,7 @@
package common
import (
+ "fmt"
"io/ioutil"
"os"
"os/user"
@@ -12,6 +13,13 @@ import (
"github.com/kardianos/osext"
)
+// MakeName creates a node name that follows the ethereum convention
+// for such names. It adds the operation system name and Go runtime version
+// the name.
+func MakeName(name, version string) string {
+ return fmt.Sprintf("%s/v%s/%s/%s", name, version, runtime.GOOS, runtime.Version())
+}
+
func ExpandHomePath(p string) (path string) {
path = p