forked from cerc-io/plugeth
13 lines
194 B
Go
13 lines
194 B
Go
// +build windows
|
|
|
|
package ethutil
|
|
|
|
// General compile function
|
|
func Compile(script string, silent bool) (ret []byte, err error) {
|
|
if len(script) > 2 {
|
|
return nil, nil
|
|
}
|
|
|
|
return nil, nil
|
|
}
|