Commit 260ace7f authored by Jeromy's avatar Jeromy

util keys need to be pointers for loggable

parent 65521637
......@@ -126,7 +126,7 @@ func (dht *IpfsDHT) Provide(ctx context.Context, key u.Key) error {
}
func (dht *IpfsDHT) FindProvidersAsync(ctx context.Context, key u.Key, count int) <-chan peer.Peer {
log.Event(ctx, "findProviders", key)
log.Event(ctx, "findProviders", &key)
peerOut := make(chan peer.Peer, count)
go func() {
ps := newPeerSet()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment