diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-16 19:39:11 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-16 19:39:11 +0800 |
commit | febec5ca4a059a3e3a5cc2b5fe0d14ba02492b95 (patch) | |
tree | af50f4e0fe12aa388714e9c97d34a77483c7dfb2 /ethchain | |
parent | 70f7a0be1187cc0e487e7b95cad238c6530d29ae (diff) | |
download | go-tangerine-febec5ca4a059a3e3a5cc2b5fe0d14ba02492b95.tar.gz go-tangerine-febec5ca4a059a3e3a5cc2b5fe0d14ba02492b95.tar.zst go-tangerine-febec5ca4a059a3e3a5cc2b5fe0d14ba02492b95.zip |
Switch EXT* codes
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/types.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethchain/types.go b/ethchain/types.go index ccd5b7975..29084c749 100644 --- a/ethchain/types.go +++ b/ethchain/types.go @@ -49,8 +49,8 @@ const ( CODESIZE = 0x38 CODECOPY = 0x39 GASPRICE = 0x3a - EXTCODECOPY = 0x3b - EXTCODESIZE = 0x3c + EXTCODESIZE = 0x3b + EXTCODECOPY = 0x3c // 0x40 range - block operations PREVHASH = 0x40 |