Skip to content

Commit

Permalink
fix error message type
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed May 17, 2024
1 parent 422c3a2 commit b0b93bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ export class AccountRequiresMemoError extends Error {

/**
* Create an AccountRequiresMemoError
* @param {message} message - error message
* @param {string} accountId - The account which requires a memo.
* @param {number} operationIndex - The index of the operation where `accountId` is the destination.
* @param {string} message error message
* @param {string} accountId The account which requires a memo.
* @param {number} operationIndex The index of the operation where `accountId` is the destination.
*/
constructor(message: string, accountId: string, operationIndex: number) {
const trueProto = new.target.prototype;
Expand Down

0 comments on commit b0b93bb

Please sign in to comment.