Skip to content

Commit 5ad0417

Browse files
authored
Improve peer hints for pin remote add (#8143)
* improve peer hints in pin.origins
1 parent d48d035 commit 5ad0417

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

core/commands/pin/remotepin.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,19 @@ NOTE: a comma-separated notation is supported in CLI for convenience:
167167
}
168168

169169
// Prepare Pin.origins
170-
// Add own multiaddrs to the 'origins' array, so Pinning Service can
171-
// use that as a hint and connect back to us (if possible)
170+
// If CID in blockstore, add own multiaddrs to the 'origins' array
171+
// so pinning service can use that as a hint and connect back to us.
172172
node, err := cmdenv.GetNode(env)
173173
if err != nil {
174174
return err
175175
}
176-
if node.PeerHost != nil {
176+
177+
isInBlockstore, err := node.Blockstore.Has(rp.Cid())
178+
if err != nil {
179+
return err
180+
}
181+
182+
if isInBlockstore && node.PeerHost != nil {
177183
addrs, err := peer.AddrInfoToP2pAddrs(host.InfoFromHost(node.PeerHost))
178184
if err != nil {
179185
return err

0 commit comments

Comments
 (0)