This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 1 file changed +5
-13
lines changed
1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module.exports = (send) => {
17
17
18
18
callback = callback || noop
19
19
20
- let hashAlg = options . hashAlg || 'sha2-256'
20
+ let hashAlg = options . hash || 'sha2-256'
21
21
let format
22
22
let inputEnc
23
23
@@ -33,20 +33,12 @@ module.exports = (send) => {
33
33
}
34
34
35
35
function prepare ( ) {
36
- if ( format === 'dag-cbor' ) {
37
- // TODO change this once
38
- // https://github.com/ipfs/go-ipfs/issues/3771 is finished
39
- format = 'cbor'
36
+ inputEnc = 'raw'
40
37
41
- inputEnc = ' cbor'
38
+ if ( format === 'dag- cbor') {
42
39
dagCBOR . util . serialize ( dagNode , finalize )
43
40
}
44
41
if ( format === 'dag-pb' ) {
45
- // TODO change this once
46
- // https://github.com/ipfs/go-ipfs/issues/3771 is finished
47
- format = 'protobuf'
48
-
49
- inputEnc = 'protobuf'
50
42
dagPB . util . serialize ( dagNode , finalize )
51
43
}
52
44
}
@@ -57,9 +49,9 @@ module.exports = (send) => {
57
49
send ( {
58
50
path : 'dag/put' ,
59
51
qs : {
60
- hashAlg : hashAlg , // not implemented in go yet https://github.com/ipfs/go-ipfs/issues/3771
52
+ hash : hashAlg ,
61
53
format : format ,
62
- inputenc : inputEnc
54
+ 'input-enc' : inputEnc
63
55
} ,
64
56
files : serialized
65
57
} , ( err , result ) => {
You can’t perform that action at this time.
0 commit comments