diff options
author | Benjamin Brent <benjamin@benjaminbrent.com> | 2016-10-19 12:55:34 +0800 |
---|---|---|
committer | Benjamin Brent <benjamin@benjaminbrent.com> | 2016-10-19 12:55:34 +0800 |
commit | 55522373fd3090892ab36e7edd6a2b7f727137b1 (patch) | |
tree | 3bfa1a4f7c59133c2b749cece4d33c4782cf2b40 | |
parent | c9471e778209e16442a530820fb90c01cd47c369 (diff) | |
download | dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.gz dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.tar.zst dexon-55522373fd3090892ab36e7edd6a2b7f727137b1.zip |
core/vm: fix GASPRICE string (resolves #2553)
-rw-r--r-- | core/vm/opcodes.go | 2 |
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", |