aboutsummaryrefslogtreecommitdiffstats
path: root/common/path.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-08-07 03:39:29 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-08-07 03:39:29 +0800
commit698e98d9814605bfea98ba3ad2fe7fda073cb2b1 (patch)
tree729aa720f3b18b9eb901111d1d58c355bc9b744c /common/path.go
parenta3b8169938953a10ab57282853768c72bebaf0b4 (diff)
parent803096ca0f262be7d03081482777c3e293f5f7ac (diff)
downloaddexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar.gz
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar.bz2
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar.lz
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar.xz
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.tar.zst
dexon-698e98d9814605bfea98ba3ad2fe7fda073cb2b1.zip
Merge pull request #1600 from ethereum/fix-tests-windows
Fix tests on windows
Diffstat (limited to 'common/path.go')
-rw-r--r--common/path.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/common/path.go b/common/path.go
index 0d7adb961..8b3c7d14b 100644
--- a/common/path.go
+++ b/common/path.go
@@ -116,14 +116,3 @@ func DefaultIpcPath() string {
}
return filepath.Join(DefaultDataDir(), "geth.ipc")
}
-
-func IsWindows() bool {
- return runtime.GOOS == "windows"
-}
-
-func WindonizePath(path string) string {
- if string(path[0]) == "/" && IsWindows() {
- path = path[1:]
- }
- return path
-}