aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm
diff options
context:
space:
mode:
authorMatthew Halpern <matthalp@gmail.com>2019-02-15 09:39:51 +0800
committerMatthew Halpern <matthalp@gmail.com>2019-02-18 23:48:19 +0800
commitc5eccaefb8d3375f8afbf5f537c1b546cad15e45 (patch)
treebed6c59058c52048fb50ca0b9fc2b90233cfc1f4 /core/vm
parent2a0e1bb32bc47b6c130a2f4651f37b1692951d55 (diff)
downloadgo-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar.gz
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar.bz2
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar.lz
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar.xz
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.tar.zst
go-tangerine-c5eccaefb8d3375f8afbf5f537c1b546cad15e45.zip
core/vm: remove unused constants
Diffstat (limited to 'core/vm')
-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.