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

Integrated new network into ipfs

This commit is contained in:
Juan Batiz-Benet
2014-12-16 08:55:46 -08:00
parent 061e1ab861
commit 41751b4938
20 changed files with 230 additions and 301 deletions

View File

@ -179,9 +179,9 @@ func Mount(ipfs *core.IpfsNode, fpath string) (mount.Mount, error) {
// assume it worked...
}
// bind the mount (ContextCloser) to the node, so that when the node exits
// bind the mount (ContextGroup) to the node, so that when the node exits
// the fsclosers are automatically closed.
ipfs.AddCloserChild(m)
ipfs.AddChildGroup(m)
return m, nil
}