File tree Expand file tree Collapse file tree 5 files changed +4
-4
lines changed
src/test/java/io/ipfs/api Expand file tree Collapse file tree 5 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 66
66
<dependency >
67
67
<groupId >com.github.multiformats</groupId >
68
68
<artifactId >java-multihash</artifactId >
69
- <version >v1.1 .1</version >
69
+ <version >v1.2 .1</version >
70
70
<scope >system</scope >
71
71
<systemPath >${project.basedir} /lib/multihash.jar</systemPath >
72
72
</dependency >
73
73
<dependency >
74
74
<groupId >com.github.multiformats</groupId >
75
75
<artifactId >java-multibase</artifactId >
76
- <version >v1.1.0 </version >
76
+ <version >v1.0.1 </version >
77
77
<scope >system</scope >
78
78
<systemPath >${project.basedir} /lib/multibase.jar</systemPath >
79
79
</dependency >
80
80
<dependency >
81
81
<groupId >com.github.ipld</groupId >
82
82
<artifactId >java-cid</artifactId >
83
- <version >v1.1.0 </version >
83
+ <version >v1.1.1 </version >
84
84
<scope >system</scope >
85
85
<systemPath >${project.basedir} /lib/cid.jar</systemPath >
86
86
</dependency >
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ public void pinUpdate() throws IOException {
265
265
public void rawLeafNodePinUpdate () throws IOException {
266
266
MerkleNode child1 = ipfs .block .put ("some data" .getBytes (), Optional .of ("raw" ));
267
267
Multihash hashChild1 = child1 .hash ;
268
- System .out .println ("child1: " + hashChild1 . type );
268
+ System .out .println ("child1: " + hashChild1 );
269
269
270
270
CborObject .CborMerkleLink root1 = new CborObject .CborMerkleLink (hashChild1 );
271
271
MerkleNode root1Res = ipfs .block .put (Collections .singletonList (root1 .toByteArray ()), Optional .of ("cbor" )).get (0 );
You can’t perform that action at this time.
0 commit comments