Starting implementation of MerkleDag

This commit is contained in:
jmjatlanta 2016-12-05 10:50:17 -05:00
parent 5f452969fd
commit 0245aa6549
13 changed files with 615 additions and 265 deletions

View file

@ -51,5 +51,5 @@ int ipfs_blockstore_put(struct Block* block, struct FSRepo* fs_repo) {
// send to Put with key
fs_repo->config->datastore->datastore_put(key, key_length, block->data, block->data_length, fs_repo->config->datastore);
return 0;
return 1;
}