diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-20 18:57:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-20 18:57:43 +0800 |
commit | 0ef7f6372939189dcfeaea8197798a63a6d6688a (patch) | |
tree | 2f80ef09a1ed1c9042571dcf501d0b19c9434fdf /ethereum/config.go | |
parent | a05adb11288a1ea9dc6e38a952ab89fa5eb7f794 (diff) | |
download | go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar.gz go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar.bz2 go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar.lz go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar.xz go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.tar.zst go-tangerine-0ef7f6372939189dcfeaea8197798a63a6d6688a.zip |
Removed old console in favor of the new JS REPL
Diffstat (limited to 'ethereum/config.go')
-rw-r--r-- | ethereum/config.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ethereum/config.go b/ethereum/config.go index 117aa6f2c..97e8687d8 100644 --- a/ethereum/config.go +++ b/ethereum/config.go @@ -4,7 +4,6 @@ import ( "flag" ) -var StartConsole bool var StartMining bool var StartRpc bool var RpcPort int @@ -24,10 +23,8 @@ var StartJsConsole bool var InputFile string func Init() { - flag.BoolVar(&StartConsole, "c", false, "debug and testing console") flag.BoolVar(&StartMining, "m", false, "start dagger mining") flag.BoolVar(&ShowGenesis, "g", false, "prints genesis header and exits") - //flag.BoolVar(&UseGui, "gui", true, "use the gui") flag.BoolVar(&StartRpc, "r", false, "start rpc server") flag.IntVar(&RpcPort, "rpcport", 8080, "port to start json-rpc server on") flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") |