Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug / Account Op missing key error note #530

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/controllers/signAccountOp/signAccountOp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,7 @@ export class SignAccountOpController extends EventEmitter {
"We are unable to estimate your transaction as you don't have tokens with balances to cover the fee."
)

if (!this.accountKeyStoreKeys.length)
errors.push('We are unable to sign your transaction as there is no available signer.')
if (!this.accountKeyStoreKeys.length) errors.push('No key available for the selected account.')

// This error should not happen, as in the update method we are always setting a default signer.
// It may occur, only if there are no available signer.
Expand Down