We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6db8c commit a992fe6Copy full SHA for a992fe6
src/main/java/io/ipfs/api/IPFS.java
@@ -300,6 +300,10 @@ public byte[] get(Multihash hash) throws IOException {
300
return retrieve("block/get?stream-channels=true&arg=" + hash);
301
}
302
303
+ public byte[] rm(Multihash hash) throws IOException {
304
+ return retrieve("block/rm?stream-channels=true&arg=" + hash);
305
+ }
306
+
307
public List<MerkleNode> put(List<byte[]> data) throws IOException {
308
return put(data, Optional.empty());
309
0 commit comments