aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/script.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/script.go b/ethutil/script.go
index aaa0f8ed8..fa05094e7 100644
--- a/ethutil/script.go
+++ b/ethutil/script.go
@@ -13,7 +13,7 @@ func Compile(script string) (ret []byte, err error) {
if len(script) > 2 {
line := strings.Split(script, "\n")[0]
- if line[0:2] == "#!" {
+ if len(line) > 1 && line[0:2] == "#!" {
switch line {
case "#!serpent":
byteCode, err := serpent.Compile(script)