Skip to content

Commit f992061

Browse files
committed
Fix vci proof nonce
1 parent 287fca2 commit f992061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VerifiableCredentials/OpenId4VciProof.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function getNonce(): ?string
9999
{
100100
$claimKey = ClaimsEnum::Nonce->value;
101101

102-
$nonce = $this->getHeaderClaim($claimKey);
102+
$nonce = $this->getPayloadClaim($claimKey);
103103

104104
return is_null($nonce) ? null : $this->helpers->type()->ensureNonEmptyString($nonce, $claimKey);
105105
}

0 commit comments

Comments
 (0)