Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ironoa committed Aug 19, 2022
1 parent 5cb9ee8 commit 3fdf932
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/polkadot-registrar-watcher/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: Polkadot Watcher
name: polkadot-registrar-watcher
version: v0.3.32
appVersion: v0.3.32
version: v0.3.33
appVersion: v0.3.33
apiVersion: v2
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polkadot-registrar-watcher",
"version": "0.3.31",
"version": "0.3.33",
"description": "Registrar",
"repository": "[email protected]:w3f/polkadot-registrar-watcher.git",
"author": "W3F Infrastructure Team <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const initPersistenceDir = (dir: string): void =>{
}

export const isDataPresent = (data: Data): boolean => {
return !data == null && !data.isEmpty && !data.isNone
return !data.isEmpty && !data.isNone
}

export const buildWsChallengeRequestData = (accountId: string, info: IdentityInfo): WsChallengeRequestData => {
Expand Down

0 comments on commit 3fdf932

Please sign in to comment.