mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
crypto/ecies: remove redundant type specifiers
This commit is contained in:
parent
7f6b05aa43
commit
011073f48a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue