diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-10 22:25:01 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-10 22:25:01 +0800 |
commit | 721d3a9a57fbc7478255d52271531f001375b863 (patch) | |
tree | 1f72dca81e9fbad641eedbaed73c7cfc6ad5992d /utils | |
parent | b0023f66b06fe1248168420a9526a64c3e09cd75 (diff) | |
parent | 23fc50c61b99735263eb682eb992c174eceea632 (diff) | |
download | dexon-721d3a9a57fbc7478255d52271531f001375b863.tar dexon-721d3a9a57fbc7478255d52271531f001375b863.tar.gz dexon-721d3a9a57fbc7478255d52271531f001375b863.tar.bz2 dexon-721d3a9a57fbc7478255d52271531f001375b863.tar.lz dexon-721d3a9a57fbc7478255d52271531f001375b863.tar.xz dexon-721d3a9a57fbc7478255d52271531f001375b863.tar.zst dexon-721d3a9a57fbc7478255d52271531f001375b863.zip |
Merge branch 'release/poc5-rc3'
Diffstat (limited to 'utils')
-rw-r--r-- | utils/compile.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/compile.go b/utils/compile.go index 6d75f73d1..967bd099b 100644 --- a/utils/compile.go +++ b/utils/compile.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 { |