aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm
diff options
context:
space:
mode:
authorBenjamin Brent <benjamin@benjaminbrent.com>2016-10-19 12:55:34 +0800
committerBenjamin Brent <benjamin@benjaminbrent.com>2016-10-19 12:55:34 +0800
commit55522373fd3090892ab36e7edd6a2b7f727137b1 (patch)
tree3bfa1a4f7c59133c2b749cece4d33c4782cf2b40 /core/vm
parentc9471e778209e16442a530820fb90c01cd47c369 (diff)
downloaddexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.gz
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.bz2
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.lz
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.xz
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.zst
dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.zip
core/vm: fix GASPRICE string (resolves #2553)
Diffstat (limited to 'core/vm')
-rw-r--r--core/vm/opcodes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/opcodes.go b/core/vm/opcodes.go
index 7d861f1de..9d2b037a5 100644
--- a/core/vm/opcodes.go
+++ b/core/vm/opcodes.go
@@ -248,7 +248,7 @@ var opCodeToString = map[OpCode]string{
CALLDATACOPY: "CALLDATACOPY",
CODESIZE: "CODESIZE",
CODECOPY: "CODECOPY",
- GASPRICE: "TXGASPRICE",
+ GASPRICE: "GASPRICE",
// 0x40 range - block operations
BLOCKHASH: "BLOCKHASH",