aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/config.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-23 20:37:03 +0800
committerobscuren <geffobscura@gmail.com>2014-05-23 20:37:03 +0800
commitd35380c19e5ce92b57158e7780f7105dc4136916 (patch)
tree44b358714448d492dcf8cdcddb4d1e6e57c4318b /ethereum/config.go
parent5f8911f7cba2cf837d891735f46b02b34e4fc228 (diff)
downloadgo-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar.gz
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar.bz2
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar.lz
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar.xz
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.tar.zst
go-tangerine-d35380c19e5ce92b57158e7780f7105dc4136916.zip
New main script through init return value
Diffstat (limited to 'ethereum/config.go')
-rw-r--r--ethereum/config.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/ethereum/config.go b/ethereum/config.go
index f39f3b7da..5da910f2b 100644
--- a/ethereum/config.go
+++ b/ethereum/config.go
@@ -31,7 +31,7 @@ func Init() {
flag.PrintDefaults()
}
- flag.StringVar(&Identifier, "i", "", "Custom client identifier")
+ flag.StringVar(&Identifier, "i", "", "custom client identifier")
flag.BoolVar(&StartMining, "m", false, "start dagger mining")
flag.BoolVar(&ShowGenesis, "g", false, "prints genesis header and exits")
flag.BoolVar(&StartRpc, "r", false, "start rpc server")
@@ -47,7 +47,6 @@ func Init() {
flag.StringVar(&ImportKey, "import", "", "imports the given private key (hex)")
flag.IntVar(&MaxPeer, "x", 10, "maximum desired peers")
flag.BoolVar(&StartJsConsole, "js", false, "exp")
- //flag.StringVar(&InputFile, "e", "", "Run javascript file")
flag.Parse()