diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-24 20:20:34 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-24 20:20:34 +0800 |
commit | e0b6091d7ef709902f534c1a4b57151f0171e03c (patch) | |
tree | 290fa26d9da264a5e365816a80c42f325adb51ef /ethutil/parsing.go | |
parent | 6a86c517c4f4b372cad0ae1d92e926a482eac5ba (diff) | |
download | dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar.gz dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar.bz2 dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar.lz dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar.xz dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.tar.zst dexon-e0b6091d7ef709902f534c1a4b57151f0171e03c.zip |
Test fixes and removed old code. Added VM gas fees
Diffstat (limited to 'ethutil/parsing.go')
-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 8929f0829..16ed2d06d 100644 --- a/ethutil/parsing.go +++ b/ethutil/parsing.go @@ -131,7 +131,7 @@ func Instr(instr string) (int, []string, error) { // Script compilation functions // Compiles strings to machine code -func Compile(instructions ...interface{}) (script []string) { +func Assemble(instructions ...interface{}) (script []string) { script = make([]string, len(instructions)) for i, val := range instructions { |