Commit a85c958b authored by Jeromy's avatar Jeromy

SQUASHME: some cleanup

License: MIT
Signed-off-by: default avatarJeromy <why@ipfs.io>
parent 1268b9cc
...@@ -119,6 +119,12 @@ type NodeOption struct { ...@@ -119,6 +119,12 @@ type NodeOption struct {
Err error Err error
} }
// TODO: this is a mid-term hack to get around the fact that blocks don't
// have full CIDs and potentially (though we don't know of any such scenario)
// may have the same block with multiple different encodings.
// We have discussed the possiblity of using CIDs as datastore keys
// in the future. This would be a much larger changeset than i want to make
// right now.
func cidsToKeyMapping(cids []*cid.Cid) map[key.Key]*cid.Cid { func cidsToKeyMapping(cids []*cid.Cid) map[key.Key]*cid.Cid {
mapping := make(map[key.Key]*cid.Cid) mapping := make(map[key.Key]*cid.Cid)
for _, c := range cids { for _, c := range cids {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment