diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-10 22:23:07 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-10 22:23:07 +0800 |
commit | d3d9ed62e26247c680e23a94fd84b078d45cb3bc (patch) | |
tree | 8d6a151b4ed1a7154c228000fb812491c89f6a53 /ethutil/script.go | |
parent | be7da48dadc04396d47c3fe8b631460853caf874 (diff) | |
download | go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.gz go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.bz2 go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.lz go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.xz go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.zst go-tangerine-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.zip |
Upgraded to new mutan
Diffstat (limited to 'ethutil/script.go')
-rw-r--r-- | ethutil/script.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/script.go b/ethutil/script.go index 620658025..94e401406 100644 --- a/ethutil/script.go +++ b/ethutil/script.go @@ -24,7 +24,7 @@ func Compile(script string) ([]byte, error) { func CompileScript(script string) ([]byte, []byte, error) { // Preprocess - mainInput, initInput := mutan.PreProcess(script) + mainInput, initInput := mutan.PreParse(script) // Compile main script mainScript, err := Compile(mainInput) if err != nil { |