From 100b8011bbbc7082c88abd228c26dfa12db56da1 Mon Sep 17 00:00:00 2001 From: Matias Pan Date: Mon, 2 Nov 2020 12:50:44 -0300 Subject: [PATCH] Modify error message --- doubleclick.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doubleclick.go b/doubleclick.go index 67c1ed1..d9d87d2 100644 --- a/doubleclick.go +++ b/doubleclick.go @@ -35,7 +35,7 @@ func ParseKeys(ic, ec []byte) (icKey []byte, ecKey []byte, err error) { // ErrInvalidPrice is the error returned when the price parsed // by DecryptPrice is not correct. -var ErrInvalidPrice = errors.New("adx price is invalid") +var ErrInvalidPrice = errors.New("price is invalid") // DecryptPrice decrypts the price with google's doubleclick cryptography encoding. // encPrice is an unpadded web-safe base64 encoded string according to RFC 3548.