aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/script.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-10 22:23:07 +0800
committerobscuren <geffobscura@gmail.com>2014-05-10 22:23:07 +0800
commitd3d9ed62e26247c680e23a94fd84b078d45cb3bc (patch)
tree8d6a151b4ed1a7154c228000fb812491c89f6a53 /ethutil/script.go
parentbe7da48dadc04396d47c3fe8b631460853caf874 (diff)
downloaddexon-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.gz
dexon-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.tar.zst
dexon-d3d9ed62e26247c680e23a94fd84b078d45cb3bc.zip
Upgraded to new mutan
Diffstat (limited to 'ethutil/script.go')
-rw-r--r--ethutil/script.go2
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 {