Skip to content

Commit

Permalink
fix: fix delegate token payload
Browse files Browse the repository at this point in the history
  • Loading branch information
Harasz committed Apr 22, 2022
1 parent c2e8f2b commit 56bfb1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/claims/claims.service.ts
Expand Up @@ -835,7 +835,7 @@ export class ClaimsService {
algorithm: Algorithms = Algorithms.EIP191
): Promise<string> {
const provider = this._signerService.provider;
const blockNumber = (await provider.getBlockNumber()).toString();
const blockNumber = await provider.getBlockNumber();

const payload = {
iss: identity,
Expand Down

0 comments on commit 56bfb1d

Please sign in to comment.