This commit is contained in:
irlndts 2018-03-20 13:56:17 +03:00
parent dd29f70850
commit afd778f11c
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func currency(c string) (string, error) {
case "":
return "USD", nil
default:
return "", fmt.Errorf("%v", "invalid currency abbreviation")
return "", fmt.Errorf("invalid currency abbreviation")
}
}