diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-23 21:53:34 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-23 21:53:34 +0800 |
commit | ef7f3f36e261bc500016dac0a703c5b7931a1721 (patch) | |
tree | 1e8641d9e72d65605c2f2d1a2b99ff7b64935a64 /ethutil | |
parent | f7d4e3cd6b276e4d66abe89b4f1b2dfa2faf90df (diff) | |
download | dexon-ef7f3f36e261bc500016dac0a703c5b7931a1721.tar.gz dexon-ef7f3f36e261bc500016dac0a703c5b7931a1721.tar.zst dexon-ef7f3f36e261bc500016dac0a703c5b7931a1721.zip |
Renamed CALLDATA to CALLDATALOAD
Diffstat (limited to 'ethutil')
-rw-r--r-- | ethutil/parsing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/parsing.go b/ethutil/parsing.go index 9775cf328..514fd92cd 100644 --- a/ethutil/parsing.go +++ b/ethutil/parsing.go @@ -39,7 +39,7 @@ var OpCodes = map[string]byte{ "ORIGIN": 0x32, "CALLER": 0x33, "CALLVALUE": 0x34, - "CALLDATA": 0x35, + "CALLDATALOAD": 0x35, "CALLDATASIZE": 0x36, "GASPRICE": 0x38, |