Skip to content

Commit

Permalink
send request to wallet along with auth-verify
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-durai committed Nov 22, 2023
1 parent 7cc5376 commit 4fb904d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ export class ArcanaProvider
return resolve(result)
}
})
this.getCommunication().then(async (c) => {
this.getResponse<string>(method, req.id).then(resolve, reject)
await c.sendRequest(req, 'auth-verify')
}, reject)
} else {
this.getCommunication().then(async (c) => {
this.getResponse<string>(method, req.id).then(resolve, reject)
Expand Down

0 comments on commit 4fb904d

Please sign in to comment.