aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/AssemblyItem.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-12-09 18:03:29 +0800
committerchriseth <c@ethdev.com>2017-01-03 21:13:49 +0800
commit49ac2a1ee5005f641e875823a84ee73c9e93a7c5 (patch)
tree1e808f85fd400ba985cc7391673a49568abf8eee /libevmasm/AssemblyItem.cpp
parenta285ca44f228236ab92eb8dc9d878053829276b4 (diff)
downloaddexon-solidity-49ac2a1ee5005f641e875823a84ee73c9e93a7c5.tar.gz
dexon-solidity-49ac2a1ee5005f641e875823a84ee73c9e93a7c5.tar.zst
dexon-solidity-49ac2a1ee5005f641e875823a84ee73c9e93a7c5.zip
Rename programSize to bytecodeSize.
Diffstat (limited to 'libevmasm/AssemblyItem.cpp')
-rw-r--r--libevmasm/AssemblyItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/AssemblyItem.cpp b/libevmasm/AssemblyItem.cpp
index 8b3f920a..b790e094 100644
--- a/libevmasm/AssemblyItem.cpp
+++ b/libevmasm/AssemblyItem.cpp
@@ -171,7 +171,7 @@ string AssemblyItem::toAssemblyText() const
text = string("dataSize(sub_") + to_string(size_t(data())) + ")";
break;
case PushProgramSize:
- text = string("programSize");
+ text = string("bytecodeSize");
break;
case PushLibraryAddress:
text = string("linkerSymbol(\"") + toHex(data()) + string("\")");