codestyle: fix error string should not be capitalized

This commit is contained in:
Vsevolod Brekelov 2019-10-18 18:34:58 +03:00
parent d46d679f36
commit 59e3bd2fa9
4 changed files with 5 additions and 5 deletions

View file

@ -87,7 +87,7 @@ func CompileAndSave(src string, o *Options) error {
}
b, err = Compile(bytes.NewReader(b), o)
if err != nil {
return fmt.Errorf("Error while trying to compile smart contract file: %v", err)
return fmt.Errorf("error while trying to compile smart contract file: %v", err)
}
log.Println(hex.EncodeToString(b))