Skip to content

Commit

Permalink
fix getAccountInfoGetter
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Oct 11, 2024
1 parent 54bda1a commit 21e2aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/worker-api/src/integriteeWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class IntegriteeWorker extends Worker {
account: accountOrPubKey,
signer: signerOptions?.signer,
}
return await submittableGetter<IntegriteeWorker, AccountInfo>(this, 'account_info', accountOrPubKey, trustedGetterArgs, null, 'AccountInfo');
return await submittableGetter<IntegriteeWorker, AccountInfo>(this, 'account_info', accountOrPubKey, trustedGetterArgs, asString(accountOrPubKey), 'AccountInfo');
}

public getGuessTheNumberInfoGetter(shard: string): SubmittableGetter<IntegriteeWorker, GuessTheNumberInfo> {
Expand Down

0 comments on commit 21e2aa9

Please sign in to comment.