mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +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
|
|
}
|