diff options
author | zelig <viktor.tron@gmail.com> | 2014-05-24 01:25:49 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-05-24 01:25:49 +0800 |
commit | 72df038d25c50a27adae8ea528dcedd3537267cf (patch) | |
tree | 44b358714448d492dcf8cdcddb4d1e6e57c4318b /ethereal/config.go | |
parent | 7f1a4c377c18055137909521d809251248b7b5af (diff) | |
parent | d35380c19e5ce92b57158e7780f7105dc4136916 (diff) | |
download | dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar.gz dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar.bz2 dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar.lz dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar.xz dexon-72df038d25c50a27adae8ea528dcedd3537267cf.tar.zst dexon-72df038d25c50a27adae8ea528dcedd3537267cf.zip |
Merge branch 'develop' of github.com:ethereum/go-ethereum into develop
Diffstat (limited to 'ethereal/config.go')
-rw-r--r-- | ethereal/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ethereal/config.go b/ethereal/config.go index 817befc2c..3864126db 100644 --- a/ethereal/config.go +++ b/ethereal/config.go @@ -4,6 +4,7 @@ import ( "flag" ) +var Identifier string var StartConsole bool var StartMining bool var StartRpc bool @@ -21,6 +22,7 @@ var DataDir string var AssetPath string func Init() { + flag.StringVar(&Identifier, "i", "", "Custom client identifier") flag.BoolVar(&StartConsole, "c", false, "debug and testing console") flag.BoolVar(&StartMining, "m", false, "start dagger mining") flag.BoolVar(&StartRpc, "r", false, "start rpc server") |