From 011073f48a71a0d9e2786ca656da607df199cb98 Mon Sep 17 00:00:00 2001 From: Matthew Halpern Date: Thu, 14 Feb 2019 17:04:05 -0800 Subject: [PATCH] crypto/ecies: remove redundant type specifiers --- crypto/ecies/ecies.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ecies/ecies.go b/crypto/ecies/ecies.go index 1474181482..ffc8d06cbb 100644 --- a/crypto/ecies/ecies.go +++ b/crypto/ecies/ecies.go @@ -307,7 +307,7 @@ func (prv *PrivateKey) Decrypt(c, s1, s2 []byte) (m []byte, err error) { var ( rLen int - hLen int = hash.Size() + hLen = hash.Size() mStart int mEnd int )