quorum/ethutil/script_windows.go

13 lines
194 B
Go
Raw Normal View History

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