aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/parsing.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/ethutil/parsing.go b/ethutil/parsing.go
index 0de396654..278414982 100644
--- a/ethutil/parsing.go
+++ b/ethutil/parsing.go
@@ -51,7 +51,10 @@ var OpCodes = map[string]byte{
"GASLIMIT": 0x45,
// 0x50 range - 'storage' and execution
- "PUSH": 0x50,
+ "PUSH": 0x50,
+
+ "PUSH20": 0x80,
+
"POP": 0x51,
"DUP": 0x52,
"SWAP": 0x53,