Removed old console in favor of the new JS REPL

This commit is contained in:
obscuren
2014-05-20 12:57:43 +02:00
parent a05adb1128
commit 0ef7f63729
3 changed files with 1 additions and 272 deletions

View File

@ -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)")