aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi/tracer_test.go
diff options
context:
space:
mode:
authorYohann Leon <sybiload@gmail.com>2017-03-22 22:32:51 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-03-22 22:32:51 +0800
commit6742fc526f3e1ae985d82a1781df4267485e2c70 (patch)
tree83da1e8ce5c2ae673358fc244b9cba8862f806be /internal/ethapi/tracer_test.go
parent9b84caf3a5f55cc2a14b50291118b9fab668b8c2 (diff)
downloaddexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar.gz
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar.bz2
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar.lz
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar.xz
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.tar.zst
dexon-6742fc526f3e1ae985d82a1781df4267485e2c70.zip
core/vm: use uint64 instead of *big.Int in tracer (#3805)
Diffstat (limited to 'internal/ethapi/tracer_test.go')
-rw-r--r--internal/ethapi/tracer_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/ethapi/tracer_test.go b/internal/ethapi/tracer_test.go
index 693afe802..0ef450ce3 100644
--- a/internal/ethapi/tracer_test.go
+++ b/internal/ethapi/tracer_test.go
@@ -136,10 +136,10 @@ func TestHaltBetweenSteps(t *testing.T) {
env := vm.NewEVM(vm.Context{}, nil, params.TestChainConfig, vm.Config{Debug: true, Tracer: tracer})
contract := vm.NewContract(&account{}, &account{}, big.NewInt(0), 0)
- tracer.CaptureState(env, 0, 0, big.NewInt(0), big.NewInt(0), nil, nil, contract, 0, nil)
+ tracer.CaptureState(env, 0, 0, 0, 0, nil, nil, contract, 0, nil)
timeout := errors.New("stahp")
tracer.Stop(timeout)
- tracer.CaptureState(env, 0, 0, big.NewInt(0), big.NewInt(0), nil, nil, contract, 0, nil)
+ tracer.CaptureState(env, 0, 0, 0, 0, nil, nil, contract, 0, nil)
if _, err := tracer.GetResult(); err.Error() != "stahp in server-side tracer function 'step'" {
t.Errorf("Expected timeout error, got %v", err)