aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/errors.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-10-31 19:07:43 +0800
committerGitHub <noreply@github.com>2016-10-31 19:07:43 +0800
commit4dc1fb923ab77fe564bdda25f36744dffa235045 (patch)
treece6de64598f42416dbffc1dff24904429f92031c /core/vm/errors.go
parentb8dec948d4d7d8257e63aeecf982c25aeec9a180 (diff)
parentbb6115b737a05e3b8bf70ff2ad74c703589627cb (diff)
downloaddexon-4dc1fb923ab77fe564bdda25f36744dffa235045.tar.gz
dexon-4dc1fb923ab77fe564bdda25f36744dffa235045.tar.zst
dexon-4dc1fb923ab77fe564bdda25f36744dffa235045.zip
Merge pull request #3064 from pirapira/limit_struct_logs
core/vm: add limit option to LogConfig
Diffstat (limited to 'core/vm/errors.go')
-rw-r--r--core/vm/errors.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/vm/errors.go b/core/vm/errors.go
index 116fbe456..1766bf9fb 100644
--- a/core/vm/errors.go
+++ b/core/vm/errors.go
@@ -26,3 +26,4 @@ import (
var OutOfGasError = errors.New("Out of gas")
var CodeStoreOutOfGasError = errors.New("Contract creation code storage out of gas")
var DepthError = fmt.Errorf("Max call depth exceeded (%d)", params.CallCreateDepth)
+var TraceLimitReachedError = errors.New("The number of logs reached the specified limit")