mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-10 06:35:54 +00:00
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
|
|
}
|