Skip to content
Open
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
4 changes: 2 additions & 2 deletions walletkit-core/src/issuers/tfh_nfc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl TfhNfcIssuer {
impl TfhNfcIssuer {
/// Refresh an NFC credential (migrate PCP to v4).
///
/// Calls the `/v2/refresh` endpoint and returns a parsed [`Credential`].
/// Calls the `/v2/migrate` endpoint and returns a parsed [`Credential`].
///
/// # Errors
///
Expand All @@ -74,7 +74,7 @@ impl TfhNfcIssuer {
request_body: &str,
headers: HashMap<String, String>,
) -> Result<Credential, WalletKitError> {
let url = format!("{}/v2/refresh", self.base_url);
let url = format!("{}/v2/migrate", self.base_url);

let mut request_builder = self
.request
Expand Down
Loading