aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-02-20 01:49:45 +0800
committerGitHub <noreply@github.com>2019-02-20 01:49:45 +0800
commit2e8a5e5659b7de9de16cdbb15e78ecf3417477c8 (patch)
tree437a4962322caf4db1150d37a9eb0843d6269ab6 /core
parent8af6c9e6a2880437ea93f1588cbe1f599d07a250 (diff)
parentc5eccaefb8d3375f8afbf5f537c1b546cad15e45 (diff)
downloadgo-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar.gz
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar.bz2
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar.lz
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar.xz
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.tar.zst
go-tangerine-2e8a5e5659b7de9de16cdbb15e78ecf3417477c8.zip
core/vm: remove unused constants (#19095)
Diffstat (limited to 'core')
-rw-r--r--core/vm/gas.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/vm/gas.go b/core/vm/gas.go
index bba7058c7..dba1b3a02 100644
--- a/core/vm/gas.go
+++ b/core/vm/gas.go
@@ -30,10 +30,6 @@ const (
GasMidStep uint64 = 8
GasSlowStep uint64 = 10
GasExtStep uint64 = 20
-
- GasReturn uint64 = 0
- GasStop uint64 = 0
- GasContractByte uint64 = 200
)
// calcGas returns the actual gas cost of the call.