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/utils | |
parent | 548e1041718ffc0ee0659f1ff99b37cad38190c0 (diff) | |
download | dexon-ed84b58af57809a743e5be6f6ea53c079c50b765.tar.gz dexon-ed84b58af57809a743e5be6f6ea53c079c50b765.tar.zst dexon-ed84b58af57809a743e5be6f6ea53c079c50b765.zip |
Debug option for VM & command line flag
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/flags.go | 13 |
1 files changed, 10 insertions, 3 deletions
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), |