mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +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 (
|
var (
|
||||||
rLen int
|
rLen int
|
||||||
hLen int = hash.Size()
|
hLen = hash.Size()
|
||||||
mStart int
|
mStart int
|
||||||
mEnd int
|
mEnd int
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue