Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-bitswap
Commits
ccf6d93b
Commit
ccf6d93b
authored
Dec 02, 2014
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rm unnecessary concurrency
License: MIT Signed-off-by:
Brian Tiger Chow
<
brian@perfmode.com
>
parent
c0f399b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
bitswap.go
bitswap.go
+4
-6
No files found.
bitswap.go
View file @
ccf6d93b
...
@@ -284,13 +284,11 @@ func (bs *bitswap) ReceiveMessage(ctx context.Context, p peer.Peer, incoming bsm
...
@@ -284,13 +284,11 @@ func (bs *bitswap) ReceiveMessage(ctx context.Context, p peer.Peer, incoming bsm
// and number of bytes transfered.
// and number of bytes transfered.
bs
.
strategy
.
MessageReceived
(
p
,
incoming
)
bs
.
strategy
.
MessageReceived
(
p
,
incoming
)
go
func
()
{
for
_
,
block
:=
range
incoming
.
Blocks
()
{
for
_
,
block
:=
range
incoming
.
Blocks
()
{
if
err
:=
bs
.
HasBlock
(
ctx
,
block
);
err
!=
nil
{
if
err
:=
bs
.
HasBlock
(
ctx
,
block
);
err
!=
nil
{
log
.
Error
(
err
)
log
.
Error
(
err
)
}
}
}
}
}()
for
_
,
key
:=
range
incoming
.
Wantlist
()
{
for
_
,
key
:=
range
incoming
.
Wantlist
()
{
if
bs
.
strategy
.
ShouldSendBlockToPeer
(
key
,
p
)
{
if
bs
.
strategy
.
ShouldSendBlockToPeer
(
key
,
p
)
{
...
...
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