aboutsummaryrefslogtreecommitdiffstats
path: root/ethvm/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethvm/types.go')
-rw-r--r--ethvm/types.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethvm/types.go b/ethvm/types.go
index 36ba395d6..bb6735993 100644
--- a/ethvm/types.go
+++ b/ethvm/types.go
@@ -145,6 +145,7 @@ const (
CREATE = 0xf0
CALL = 0xf1
RETURN = 0xf2
+ POST = 0xf3
// 0x70 range - other
LOG = 0xfe // XXX Unofficial
@@ -438,6 +439,7 @@ var OpCodes = map[string]byte{
"CREATE": 0xf0,
"CALL": 0xf1,
"RETURN": 0xf2,
+ "POST": 0xf3,
// 0x70 range - other
"LOG": 0xfe,