1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 09:52:20 +08:00

updated multiaddr use across codebase

This commit is contained in:
Juan Batiz-Benet
2014-10-06 04:13:39 -07:00
parent 20a20c9e1a
commit 910a76e220
12 changed files with 25 additions and 39 deletions

View File

@ -184,7 +184,7 @@ func TestGetFailures(t *testing.T) {
func _randPeer() *peer.Peer {
p := new(peer.Peer)
p.ID = make(peer.ID, 16)
p.Addresses = []*ma.Multiaddr{nil}
p.Addresses = []ma.Multiaddr{nil}
crand.Read(p.ID)
return p
}