aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2017-05-25 04:28:22 +0800
committerGitHub <noreply@github.com>2017-05-25 04:28:22 +0800
commit261b3e235160d30cc7176e02fd0a43f2b60409c6 (patch)
tree9d3eb6eec9fc2d30badba7bc6824560bcb317132 /internal
parent344f25fb3ec26818c673a5b68b21b527759d7499 (diff)
parent11cf5b7eadb7fcfa56a0cb98ec4ebbddce00f4c0 (diff)
downloaddexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.gz
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.bz2
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.lz
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.xz
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.zst
dexon-261b3e235160d30cc7176e02fd0a43f2b60409c6.zip
Merge pull request #14336 from obscuren/metropolis-preparation
consensus, core/*, params: metropolis preparation refactor
Diffstat (limited to 'internal')
-rw-r--r--internal/ethapi/tracer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/tracer_test.go b/internal/ethapi/tracer_test.go
index 0ef450ce3..5093dafd6 100644
--- a/internal/ethapi/tracer_test.go
+++ b/internal/ethapi/tracer_test.go
@@ -48,7 +48,7 @@ func runTrace(tracer *JavascriptTracer) (interface{}, error) {
contract := vm.NewContract(account{}, account{}, big.NewInt(0), 10000)
contract.Code = []byte{byte(vm.PUSH1), 0x1, byte(vm.PUSH1), 0x1, 0x0}
- _, err := env.Interpreter().Run(contract, []byte{})
+ _, err := env.Interpreter().Run(0, contract, []byte{})
if err != nil {
return nil, err
}