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