Skip to content

Commit

Permalink
fix: ValidatorAddress Validation during getNonce
Browse files Browse the repository at this point in the history
  • Loading branch information
kanthgithub committed Sep 21, 2024
1 parent a1f4ddd commit 2588023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdk/base/EtherspotWalletAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class EtherspotWalletAPI extends BaseAccountAPI {
else {
const isModuleInstalled = await this.isModuleInstalled(MODULE_TYPE.VALIDATOR, nonceKey);
if(!isModuleInstalled) {
throw new Error(`Validator Address: ${nonceKey} is not installed in the wallet`);
throw new Error(`Validator: ${nonceKey} is not installed in the wallet`);
}
}

Expand Down

0 comments on commit 2588023

Please sign in to comment.