diff options
author | Kenji Siu <kenji@isuntv.com> | 2016-11-01 17:23:24 +0800 |
---|---|---|
committer | Kenji Siu <kenji@isuntv.com> | 2016-11-01 18:40:36 +0800 |
commit | d85d3c74db4ddb179366587e5c3afb048e85b50a (patch) | |
tree | 60ccf2ce3cbccc364f7494965d987bb755351b1e /internal/ethapi | |
parent | 4dc1fb923ab77fe564bdda25f36744dffa235045 (diff) | |
download | go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.gz go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.bz2 go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.lz go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.xz go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.zst go-tangerine-d85d3c74db4ddb179366587e5c3afb048e85b50a.zip |
internal/debug, internal/ethapi, rpc, swarm/storage: Ran "go fmt"
Diffstat (limited to 'internal/ethapi')
-rw-r--r-- | internal/ethapi/tracer.go | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/internal/ethapi/tracer.go b/internal/ethapi/tracer.go index c6d4f814e..5f69826a3 100644 --- a/internal/ethapi/tracer.go +++ b/internal/ethapi/tracer.go @@ -167,17 +167,17 @@ func (dw *dbWrapper) toValue(vm *otto.Otto) otto.Value { // JavascriptTracer provides an implementation of Tracer that evaluates a // Javascript function for each VM execution step. type JavascriptTracer struct { - vm *otto.Otto // Javascript VM instance - traceobj *otto.Object // User-supplied object to call - log map[string]interface{} // (Reusable) map for the `log` arg to `step` - logvalue otto.Value // JS view of `log` - memory *memoryWrapper // Wrapper around the VM memory - memvalue otto.Value // JS view of `memory` - stack *stackWrapper // Wrapper around the VM stack - stackvalue otto.Value // JS view of `stack` - db *dbWrapper // Wrapper around the VM environment - dbvalue otto.Value // JS view of `db` - err error // Error, if one has occurred + vm *otto.Otto // Javascript VM instance + traceobj *otto.Object // User-supplied object to call + log map[string]interface{} // (Reusable) map for the `log` arg to `step` + logvalue otto.Value // JS view of `log` + memory *memoryWrapper // Wrapper around the VM memory + memvalue otto.Value // JS view of `memory` + stack *stackWrapper // Wrapper around the VM stack + stackvalue otto.Value // JS view of `stack` + db *dbWrapper // Wrapper around the VM environment + dbvalue otto.Value // JS view of `db` + err error // Error, if one has occurred } // NewJavascriptTracer instantiates a new JavascriptTracer instance. @@ -222,17 +222,17 @@ func NewJavascriptTracer(code string) (*JavascriptTracer, error) { db := &dbWrapper{} return &JavascriptTracer{ - vm: vm, - traceobj: jstracer, - log: log, - logvalue: logvalue, - memory: mem, - memvalue: mem.toValue(vm), - stack: stack, - stackvalue: stack.toValue(vm), - db: db, - dbvalue: db.toValue(vm), - err: nil, + vm: vm, + traceobj: jstracer, + log: log, + logvalue: logvalue, + memory: mem, + memvalue: mem.toValue(vm), + stack: stack, + stackvalue: stack.toValue(vm), + db: db, + dbvalue: db.toValue(vm), + err: nil, }, nil } |