2014-10-23 23:04:10 +00:00
|
|
|
// +build windows
|
|
|
|
|
2014-09-23 10:00:01 +00:00
|
|
|
package ethutil
|
|
|
|
|
|
|
|
// General compile function
|
|
|
|
func Compile(script string, silent bool) (ret []byte, err error) {
|
|
|
|
if len(script) > 2 {
|
2014-12-04 16:13:23 +00:00
|
|
|
return nil, nil
|
2014-09-23 10:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|