diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-06 23:58:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-06 23:58:52 +0800 |
commit | ed84b58af57809a743e5be6f6ea53c079c50b765 (patch) | |
tree | af093595e7ae7c4dffd31e50e7dfcb91e2b9fe05 /cmd | |
parent | 548e1041718ffc0ee0659f1ff99b37cad38190c0 (diff) | |
download | go-tangerine-ed84b58af57809a743e5be6f6ea53c079c50b765.tar.gz go-tangerine-ed84b58af57809a743e5be6f6ea53c079c50b765.tar.zst go-tangerine-ed84b58af57809a743e5be6f6ea53c079c50b765.zip |
Debug option for VM & command line flag
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethereum/main.go | 3 | ||||
-rw-r--r-- | cmd/utils/flags.go | 13 |
2 files changed, 12 insertions, 4 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index 1133bd6f7..d9fbabdb7 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -108,7 +108,8 @@ runtime will execute the file and exit. utils.RPCEnabledFlag, utils.RPCListenAddrFlag, utils.RPCPortFlag, - utils.VMTypeFlag, + utils.VMDebugFlag, + //utils.VMTypeFlag, } // missing: diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index fb80ac708..d363ef280 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -26,9 +26,15 @@ import ( var ( // General settings - VMTypeFlag = cli.IntFlag{ - Name: "vm", - Usage: "Virtual Machine type: 0 is standard VM, 1 is debug VM", + /* + VMTypeFlag = cli.IntFlag{ + Name: "vm", + Usage: "Virtual Machine type: 0 is standard VM, 1 is debug VM", + } + */ + VMDebugFlag = cli.BoolFlag{ + Name: "vmdebug", + Usage: "Virtual Machine debug output", } KeyRingFlag = cli.StringFlag{ Name: "keyring", @@ -152,6 +158,7 @@ func GetEthereum(clientID, version string, ctx *cli.Context) *eth.Ethereum { LogLevel: ctx.GlobalInt(LogLevelFlag.Name), LogFormat: ctx.GlobalString(LogFormatFlag.Name), MinerThreads: ctx.GlobalInt(MinerThreadsFlag.Name), + VmDebug: ctx.GlobalBool(VMDebugFlag.Name), MaxPeers: ctx.GlobalInt(MaxPeersFlag.Name), Port: ctx.GlobalString(ListenPortFlag.Name), |