Skip to content

Commit

Permalink
Merge pull request #587 from nevermined-io/fix/signTypedData
Browse files Browse the repository at this point in the history
fix: signTypedData
  • Loading branch information
aaitor authored Oct 3, 2023
2 parents 9067120 + e85a141 commit de18a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nevermined/utils/JwtUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class EthSignJWT extends SignJWT {
message: eip712Data.message,
token: decoder.decode(data),
}
sign = await (signer as any)._signTypedData(domain, types, value)
sign = await signer.signTypedData(domain, types, value)
} else {
sign = await EthSignJWT.signText(decoder.decode(data), signer)
}
Expand Down

0 comments on commit de18a08

Please sign in to comment.