codestyle: fix error string should not be capitalized
This commit is contained in:
parent
d46d679f36
commit
59e3bd2fa9
4 changed files with 5 additions and 5 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue