1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-09 17:22:21 +08:00

Remove Config file section "Datastore", it's not used

This gives us a clean slate for the new code, avoiding leftovers.

License: MIT
Signed-off-by: Tommi Virtanen <tv@eagain.net>
This commit is contained in:
Tommi Virtanen
2015-05-19 15:32:41 -07:00
committed by Jeromy
parent 2c4a9ab7e4
commit 6996ce6758
3 changed files with 2 additions and 14 deletions

View File

@ -69,12 +69,5 @@ func Load(filename string) (*config.Config, error) {
return nil, err
}
// tilde expansion on datastore path
// TODO why is this here??
cfg.Datastore.Path, err = util.TildeExpansion(cfg.Datastore.Path)
if err != nil {
return nil, err
}
return &cfg, err
}