Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lauti7 committed Apr 24, 2024
1 parent a4ff0dc commit d37d9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/handlers/ws-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ export async function registerWsHandler(
try {
const authChainMessage = new TextDecoder().decode(message)

const veirfyResult = await verify('get', '/', JSON.parse(authChainMessage), {
const verifyResult = await verify('get', '/', JSON.parse(authChainMessage), {
fetcher
})
const address = normalizeAddress(veirfyResult.auth)
const address = normalizeAddress(verifyResult.auth)

logger.debug('addresss > ', { address })

Expand Down

0 comments on commit d37d9fd

Please sign in to comment.