Skip to content

Commit

Permalink
fix: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
linnall committed Jan 9, 2025
1 parent 2004a71 commit e25a1f7
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account-kit/signer/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -571,10 +571,10 @@ export abstract class BaseAlchemySigner<TClient extends BaseSignerClient>
"BaseAlchemySigner.signAuthorization",
async (unsignedAuthorization) => {
const hashedAuthorization = hashAuthorization(unsignedAuthorization);
const hashedAuthorizationHex = await this.inner.signRawMessage(
const signedAuthorizationHex = await this.inner.signRawMessage(
hashedAuthorization
);
const signature = this.unpackSignRawMessageBytes(hashedAuthorizationHex);
const signature = this.unpackSignRawMessageBytes(signedAuthorizationHex);
return { ...unsignedAuthorization, ...signature };
}
);
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e25a1f7

Please sign in to comment.