script_windows.go 194 Bytes
Newer Older
1 2
// +build windows

3 4 5 6 7
package ethutil

// General compile function
func Compile(script string, silent bool) (ret []byte, err error) {
	if len(script) > 2 {
obscuren's avatar
obscuren committed
8
		return nil, nil
9 10 11 12
	}

	return nil, nil
}