diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-08-25 21:03:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-25 21:03:39 +0800 |
commit | 9d0c51fb0f9f4c2db02f12d485bb78f9c177b397 (patch) | |
tree | 8decfb111ffe4d1c409f56e2d0dd660f01e77e19 /core/vm/errors.go | |
parent | 27a5622e995d762683dd1a79423d83fcf3e62ccf (diff) | |
parent | 08f27428b4e97c339a220b7155ad13f4ef5a6767 (diff) | |
download | go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar.gz go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar.bz2 go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar.lz go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar.xz go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.tar.zst go-tangerine-9d0c51fb0f9f4c2db02f12d485bb78f9c177b397.zip |
Merge pull request #15039 from karalabe/metropolis-contract-clash
core, tests: implement Metropolis EIP 684
Diffstat (limited to 'core/vm/errors.go')
-rw-r--r-- | core/vm/errors.go | 11 |
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") ) |