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