aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi/tracer.go
Commit message (Collapse)AuthorAgeFilesLines
* core, core/vm: implemented a generic environment (#3348)Jeffrey Wilcke2016-12-061-3/+3
| | | | | | | | Environment is now a struct (not an interface). This reduces a lot of tech-debt throughout the codebase where a virtual machine environment had to be implemented in order to test or run it. The new environment is suitable to be used en the json tests, core consensus and light client.
* internal/debug, internal/ethapi, rpc, swarm/storage: Ran "go fmt"Kenji Siu2016-11-011-22/+22
|
* vm, ethapi: add `limit` option to traceTransactionYoichi Hirai2016-09-301-1/+2
| | | | | | | | | | | | that specifies the maximum number of elements in the `structLogs` output. This option is useful for debugging a transaction that involves a large number of repetition. For example, ``` debug.traceTransaction(tx, {disableStorage: true, limit: 2}) ``` shows at most the first two steps in the `structLogs`.
* internal/ethapi: Fix bug in opCodeWrapper usageNick Johnson2016-08-241-1/+3
|
* internal/ethapi: Improve tracer error reporting and serializationNick Johnson2016-08-241-9/+24
|
* core/vm, eth: Add support for javascript trace functionsNick Johnson2016-08-231-0/+300