Skip to content

Commit

Permalink
removed .toLocaleLowerCase
Browse files Browse the repository at this point in the history
  • Loading branch information
bee344 committed Jan 9, 2024
1 parent 0206365 commit bb2caa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registry/Registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export class Registry {
POLKADOT_ASSET_HUB_SPEC_NAMES.includes(specName.toLowerCase()) ||
KUSAMA_ASSET_HUB_SPEC_NAMES.includes(specName.toLowerCase()) ||
WESTEND_ASSET_HUB_SPEC_NAMES.includes(specName.toLowerCase()) ||
ROCOCO_ASSET_HUB_SPEC_NAME.includes(specName.toLocaleLowerCase())
ROCOCO_ASSET_HUB_SPEC_NAME.includes(specName.toLowerCase())
) {
this.specNameToIdCache.set(specName, '1000');
return '1000';
Expand Down

0 comments on commit bb2caa8

Please sign in to comment.