aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/flags.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-27 01:41:36 +0800
committerzelig <viktor.tron@gmail.com>2014-06-27 01:48:08 +0800
commitae5ace16190d48bfe7a0364fdb0b51644518ec42 (patch)
treee676f9b43b874a13fb47f642a27bfce02e425eff /ethereum/flags.go
parent648c418fcd7a88fc48032c55c2dba87f6bdad8c7 (diff)
downloaddexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.gz
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.bz2
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.lz
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.xz
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.zst
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.zip
go fmt
Diffstat (limited to 'ethereum/flags.go')
-rw-r--r--ethereum/flags.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/ethereum/flags.go b/ethereum/flags.go
index 232a2bc92..8fb87cf34 100644
--- a/ethereum/flags.go
+++ b/ethereum/flags.go
@@ -3,10 +3,10 @@ package main
import (
"flag"
"fmt"
+ "github.com/ethereum/eth-go/ethlog"
"os"
- "os/user"
- "path"
- "github.com/ethereum/eth-go/ethlog"
+ "os/user"
+ "path"
)
var Identifier string
@@ -34,8 +34,8 @@ var StartJsConsole bool
var InputFile string
func defaultDataDir() string {
- usr, _ := user.Current()
- return path.Join(usr.HomeDir, ".ethereum")
+ usr, _ := user.Current()
+ return path.Join(usr.HomeDir, ".ethereum")
}
var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini")