aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-23 18:00:25 +0800
committerobscuren <geffobscura@gmail.com>2014-09-23 18:00:25 +0800
commitb73c07dd806f0fe48ac96b142cc40d480496f2cf (patch)
treec1efecc46d6fd6eed8dd059d8582dc8fd822f1fb
parent1b66e1c93aa2a07afdd349a3a1700ded8e7cf496 (diff)
parentac5e86b7aee5715ca19a7c9fac56c62e7fcd7325 (diff)
downloaddexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar.gz
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar.bz2
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar.lz
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar.xz
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.tar.zst
dexon-b73c07dd806f0fe48ac96b142cc40d480496f2cf.zip
Merge branch 'hotfix/0.6.5-2' into develop
-rw-r--r--ethutil/script.go1
-rw-r--r--ethutil/script_windows.go31
2 files changed, 32 insertions, 0 deletions
diff --git a/ethutil/script.go b/ethutil/script.go
index bd087e7e0..a103fb8f0 100644
--- a/ethutil/script.go
+++ b/ethutil/script.go
@@ -1,3 +1,4 @@
+// +build !windows
package ethutil
import (
diff --git a/ethutil/script_windows.go b/ethutil/script_windows.go
new file mode 100644
index 000000000..4f94c6448
--- /dev/null
+++ b/ethutil/script_windows.go
@@ -0,0 +1,31 @@
+package ethutil
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/obscuren/mutan"
+ "github.com/obscuren/mutan/backends"
+)
+
+// General compile function
+func Compile(script string, silent bool) (ret []byte, err error) {
+ if len(script) > 2 {
+ compiler := mutan.NewCompiler(backend.NewEthereumBackend())
+ compiler.Silent = silent
+ byteCode, errors := compiler.Compile(strings.NewReader(script))
+ if len(errors) > 0 {
+ var errs string
+ for _, er := range errors {
+ if er != nil {
+ errs += er.Error()
+ }
+ }
+ return nil, fmt.Errorf("%v", errs)
+ }
+
+ return byteCode, nil
+ }
+
+ return nil, nil
+}