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
e0d6a64b
Commit
e0d6a64b
authored
Jan 28, 2016
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct go-log dep
License: MIT Signed-off-by:
Jeromy
<
jeromyj@gmail.com
>
parent
cb2f9e8b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
bitswap.go
bitswap.go
+1
-1
decision/engine.go
decision/engine.go
+1
-1
network/ipfs_impl.go
network/ipfs_impl.go
+1
-1
notifications/notifications.go
notifications/notifications.go
+1
-1
notifications/notifications_test.go
notifications/notifications_test.go
+1
-1
workers.go
workers.go
+1
-1
No files found.
bitswap.go
View file @
e0d6a64b
...
...
@@ -22,7 +22,7 @@ import (
"github.com/ipfs/go-ipfs/thirdparty/delay"
peer
"gx/ipfs/QmZxtCsPRgCnCXwVPUjcBiFckkG5NMYM4Pthwe6X4C8uQq/go-libp2p/p2p/peer"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
logging
"gx/ipfs/Qma
PaGNE2GqnfJjRRpQuQuFHuJn4FZvsrGxdik4kgxCkBi
/go-log"
logging
"gx/ipfs/Qma
zh5oNUVsDZTs2g59rq8aYQqwpss8tcUWQzor5sCCEuH
/go-log"
)
var
log
=
logging
.
Logger
(
"bitswap"
)
...
...
decision/engine.go
View file @
e0d6a64b
...
...
@@ -10,7 +10,7 @@ import (
wl
"github.com/ipfs/go-ipfs/exchange/bitswap/wantlist"
peer
"gx/ipfs/QmZxtCsPRgCnCXwVPUjcBiFckkG5NMYM4Pthwe6X4C8uQq/go-libp2p/p2p/peer"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
logging
"gx/ipfs/Qma
PaGNE2GqnfJjRRpQuQuFHuJn4FZvsrGxdik4kgxCkBi
/go-log"
logging
"gx/ipfs/Qma
zh5oNUVsDZTs2g59rq8aYQqwpss8tcUWQzor5sCCEuH
/go-log"
)
// TODO consider taking responsibility for other types of requests. For
...
...
network/ipfs_impl.go
View file @
e0d6a64b
...
...
@@ -9,7 +9,7 @@ import (
inet
"gx/ipfs/QmZxtCsPRgCnCXwVPUjcBiFckkG5NMYM4Pthwe6X4C8uQq/go-libp2p/p2p/net"
peer
"gx/ipfs/QmZxtCsPRgCnCXwVPUjcBiFckkG5NMYM4Pthwe6X4C8uQq/go-libp2p/p2p/peer"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
logging
"gx/ipfs/Qma
PaGNE2GqnfJjRRpQuQuFHuJn4FZvsrGxdik4kgxCkBi
/go-log"
logging
"gx/ipfs/Qma
zh5oNUVsDZTs2g59rq8aYQqwpss8tcUWQzor5sCCEuH
/go-log"
)
var
log
=
logging
.
Logger
(
"bitswap_network"
)
...
...
notifications/notifications.go
View file @
e0d6a64b
...
...
@@ -2,9 +2,9 @@ package notifications
import
(
pubsub
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/briantigerchow/pubsub"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
blocks
"github.com/ipfs/go-ipfs/blocks"
key
"github.com/ipfs/go-ipfs/blocks/key"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
)
const
bufferSize
=
16
...
...
notifications/notifications_test.go
View file @
e0d6a64b
...
...
@@ -5,10 +5,10 @@ import (
"testing"
"time"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
blocks
"github.com/ipfs/go-ipfs/blocks"
blocksutil
"github.com/ipfs/go-ipfs/blocks/blocksutil"
key
"github.com/ipfs/go-ipfs/blocks/key"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
)
func
TestDuplicates
(
t
*
testing
.
T
)
{
...
...
workers.go
View file @
e0d6a64b
...
...
@@ -8,7 +8,7 @@ import (
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
key
"github.com/ipfs/go-ipfs/blocks/key"
logging
"gx/ipfs/Qma
PaGNE2GqnfJjRRpQuQuFHuJn4FZvsrGxdik4kgxCkBi
/go-log"
logging
"gx/ipfs/Qma
zh5oNUVsDZTs2g59rq8aYQqwpss8tcUWQzor5sCCEuH
/go-log"
)
var
TaskWorkerCount
=
8
...
...
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