aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-14 17:48:52 +0800
committerobscuren <geffobscura@gmail.com>2014-10-14 17:48:52 +0800
commitc5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28 (patch)
tree5588276a932ac88daaaf9ca1858106ba3ff007b1 /ethutil
parent2e894b668a2bde3eb83418cfd9128f3a571e0026 (diff)
downloadgo-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.gz
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.bz2
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.lz
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.xz
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.zst
go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.zip
Refactored VM to two separate VMs; std & debug
Standard VM should be about 10x faster than the debug VM. Some error checking has been removed, all of the log statements and therefor quite some unnecessary if-statements.
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/config.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ethutil/config.go b/ethutil/config.go
index 81052318e..ccc7714d0 100644
--- a/ethutil/config.go
+++ b/ethutil/config.go
@@ -17,6 +17,7 @@ type ConfigManager struct {
Diff bool
DiffType string
Paranoia bool
+ VmType int
conf *globalconf.GlobalConf
}