aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/script_windows.go
blob: 1dedc5f60ef37c9c9a949c6b8f1f8b24f65130a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// +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
}