Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
c4864449
Commit
c4864449
authored
Jan 30, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed whisper pub key bug
* Unrecoverable messages would cause segfault when recovering invalid pub key
parent
54927dc0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
crypto.go
crypto/crypto.go
+1
-1
whisper.go
whisper/whisper.go
+1
-1
No files found.
crypto/crypto.go
View file @
c4864449
...
@@ -92,7 +92,7 @@ func ToECDSAPub(pub []byte) *ecdsa.PublicKey {
...
@@ -92,7 +92,7 @@ func ToECDSAPub(pub []byte) *ecdsa.PublicKey {
}
}
func
FromECDSAPub
(
pub
*
ecdsa
.
PublicKey
)
[]
byte
{
func
FromECDSAPub
(
pub
*
ecdsa
.
PublicKey
)
[]
byte
{
if
pub
==
nil
{
if
pub
==
nil
||
pub
.
X
==
nil
||
pub
.
Y
==
nil
{
return
nil
return
nil
}
}
return
elliptic
.
Marshal
(
S256
(),
pub
.
X
,
pub
.
Y
)
return
elliptic
.
Marshal
(
S256
(),
pub
.
X
,
pub
.
Y
)
...
...
whisper/whisper.go
View file @
c4864449
...
@@ -197,7 +197,7 @@ func (self *Whisper) add(envelope *Envelope) error {
...
@@ -197,7 +197,7 @@ func (self *Whisper) add(envelope *Envelope) error {
go
self
.
postEvent
(
envelope
)
go
self
.
postEvent
(
envelope
)
}
}
wlogger
.
DebugDetail
ln
(
"added whisper message"
)
wlogger
.
DebugDetail
f
(
"added whisper envelope %x
\n
"
,
envelope
)
return
nil
return
nil
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment