crypto/ecies: remove redundant type specifiers

This commit is contained in:
Matthew Halpern 2019-02-14 17:04:05 -08:00
parent 7f6b05aa43
commit 011073f48a

View file

@ -307,7 +307,7 @@ func (prv *PrivateKey) Decrypt(c, s1, s2 []byte) (m []byte, err error) {
var ( var (
rLen int rLen int
hLen int = hash.Size() hLen = hash.Size()
mStart int mStart int
mEnd int mEnd int
) )