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
b98aa3b4
Commit
b98aa3b4
authored
Jan 02, 2018
by
Péter Szilágyi
Committed by
Felix Lange
Jan 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whisper/whisper2: fix Go 1.10 vet issues on type mismatches (#15783)
parent
6cd6b921
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
whisper.go
whisper/whisperv2/whisper.go
+2
-2
No files found.
whisper/whisperv2/whisper.go
View file @
b98aa3b4
...
@@ -262,7 +262,7 @@ func (self *Whisper) add(envelope *Envelope) error {
...
@@ -262,7 +262,7 @@ func (self *Whisper) add(envelope *Envelope) error {
// Insert the message into the tracked pool
// Insert the message into the tracked pool
hash
:=
envelope
.
Hash
()
hash
:=
envelope
.
Hash
()
if
_
,
ok
:=
self
.
messages
[
hash
];
ok
{
if
_
,
ok
:=
self
.
messages
[
hash
];
ok
{
log
.
Trace
(
fmt
.
Sprintf
(
"whisper envelope already cached: %x
\n
"
,
envelope
))
log
.
Trace
(
fmt
.
Sprintf
(
"whisper envelope already cached: %x
\n
"
,
hash
))
return
nil
return
nil
}
}
self
.
messages
[
hash
]
=
envelope
self
.
messages
[
hash
]
=
envelope
...
@@ -277,7 +277,7 @@ func (self *Whisper) add(envelope *Envelope) error {
...
@@ -277,7 +277,7 @@ func (self *Whisper) add(envelope *Envelope) error {
// Notify the local node of a message arrival
// Notify the local node of a message arrival
go
self
.
postEvent
(
envelope
)
go
self
.
postEvent
(
envelope
)
}
}
log
.
Trace
(
fmt
.
Sprintf
(
"cached whisper envelope %x
\n
"
,
envelope
))
log
.
Trace
(
fmt
.
Sprintf
(
"cached whisper envelope %x
\n
"
,
hash
))
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