Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifahmed990 committed Dec 14, 2024
1 parent f624829 commit 1556140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/account/Safe/SafeAccountV0_2_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class SafeAccountV0_2_0 extends SafeAccount {
}
if(owners.indexOf(owner) != 0){
throw RangeError(
"Webauthn signer has to be the first signer for an init transaction.",
"Webauthn owner has to be the first owner for an init transaction.",
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/account/Safe/SafeAccountV0_3_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class SafeAccountV0_3_0 extends SafeAccount {
}
if(owners.indexOf(owner) != 0){
throw RangeError(
"Webauthn signer has to be the first signer for an init transaction.",
"Webauthn owner has to be the first owner for an init transaction.",
);
}
isInitWebAuthn = true;
Expand Down

0 comments on commit 1556140

Please sign in to comment.