Moved compiling related object to utils package

This commit is contained in:
obscuren 2014-04-16 04:08:37 +02:00
parent 1cd7d4456b
commit 9cf77cdbad
1 changed files with 24 additions and 0 deletions

24
utils/compile.go Normal file
View File

@ -0,0 +1,24 @@
package utils
import (
"fmt"
"github.com/ethereum/eth-go/ethutil"
"github.com/obscuren/mutan"
"strings"
)
// General compile function
func Compile(script string) ([]byte, error) {
asm, errors := mutan.Compile(strings.NewReader(script), false)
if len(errors) > 0 {
var errs string
for _, er := range errors {
if er != nil {
errs += er.Error()
}
}
return nil, fmt.Errorf("%v", errs)
}
return ethutil.Assemble(asm...), nil
}