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 464234b commit 40b7ac1Copy full SHA for 40b7ac1
availability-oracle/src/ipfs.rs
@@ -52,11 +52,7 @@ impl IpfsImpl {
52
let _permit = self.semaphore.acquire().await;
53
54
// Using standard IPFS gateway URL format
55
- let url = format!(
56
- "{}/ipfs/{}",
57
- self.endpoint.trim_end_matches('/'),
58
- cid
59
- );
+ let url = format!("{}/ipfs/{}", self.endpoint.trim_end_matches('/'), cid);
60
self.client
61
.get(&url)
62
.timeout(self.timeout)
0 commit comments