File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -167,13 +167,19 @@ NOTE: a comma-separated notation is supported in CLI for convenience:
167
167
}
168
168
169
169
// 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.
172
172
node , err := cmdenv .GetNode (env )
173
173
if err != nil {
174
174
return err
175
175
}
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 {
177
183
addrs , err := peer .AddrInfoToP2pAddrs (host .InfoFromHost (node .PeerHost ))
178
184
if err != nil {
179
185
return err
You can’t perform that action at this time.
0 commit comments