aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/errors.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-08-25 17:30:51 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-08-25 18:00:27 +0800
commit08f27428b4e97c339a220b7155ad13f4ef5a6767 (patch)
tree8decfb111ffe4d1c409f56e2d0dd660f01e77e19 /core/vm/errors.go
parent27a5622e995d762683dd1a79423d83fcf3e62ccf (diff)
downloadgo-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar.gz
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar.bz2
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar.lz
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar.xz
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.tar.zst
go-tangerine-08f27428b4e97c339a220b7155ad13f4ef5a6767.zip
core, tests: implement Metropolis EIP 684
Diffstat (limited to 'core/vm/errors.go')
-rw-r--r--core/vm/errors.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/vm/errors.go b/core/vm/errors.go
index 69c7d6a98..b19366be0 100644
--- a/core/vm/errors.go
+++ b/core/vm/errors.go
@@ -19,9 +19,10 @@ package vm
import "errors"
var (
- ErrOutOfGas = errors.New("out of gas")
- ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas")
- ErrDepth = errors.New("max call depth exceeded")
- ErrTraceLimitReached = errors.New("the number of logs reached the specified limit")
- ErrInsufficientBalance = errors.New("insufficient balance for transfer")
+ ErrOutOfGas = errors.New("out of gas")
+ ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas")
+ ErrDepth = errors.New("max call depth exceeded")
+ ErrTraceLimitReached = errors.New("the number of logs reached the specified limit")
+ ErrInsufficientBalance = errors.New("insufficient balance for transfer")
+ ErrContractAddressCollision = errors.New("contract address collision")
)