Skip to content

Commit

Permalink
chore: fix PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugoo committed Dec 14, 2023
1 parent 32c3b52 commit 9bbd63d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class ERC725 {
const isKeyValid = schema.key === encodedKeyName;

if (!isKeyValid) {
console.log(
console.warn(
`The schema with keyName: ${schema.name} is skipped because its key hash does not match its key name (expected: ${encodedKeyName}, got: ${schema.key}).`,
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/encoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ export const valueContentEncodingMap = (
decode: (value: string) => hexToUtf8(value),
};
}
// https://github.com/lukso-network/LIPs/blob/master/LSPs/LSP-2-ERC725YJSONSchema.md#jsonurl
// https://github.com/lukso-network/LIPs/blob/main/LSPs/LSP-2-ERC725YJSONSchema.md#verifiableuri
case 'AssetURL': // Deprecated since v0.22.0
case 'JSONURL': // Deprecated since v0.22.0
case 'VerifiableURI': {
Expand Down

0 comments on commit 9bbd63d

Please sign in to comment.