Skip to content
This repository was archived by the owner on Oct 23, 2022. It is now read-only.

document that Ipfs::resolve_ipns currently only supports dnslink #385

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ impl<Types: IpfsTypes> Ipfs<Types> {
.await
}

/// Resolves a ipns path to an ipld path.
/// Resolves a ipns path to an ipld path; currently only supports dnslink resolution.
pub async fn resolve_ipns(&self, path: &IpfsPath, recursive: bool) -> Result<IpfsPath, Error> {
async move {
let ipns = self.ipns();
Expand Down