Skip to content

Commit

Permalink
chore: 🤖 correct the joinCreator method declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantasdeveloper committed Oct 9, 2024
1 parent 52a7b12 commit 1870004
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/entities/Account/MultiSig/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export class MultiSig extends Account {
{ getProcedureAndArgs: adminArgs => [setMultiSigAdmin, { multiSig: this, ...adminArgs }] },
context
);

this.removePayer = createProcedureMethod(
{
getProcedureAndArgs: () => [removeMultiSigPayer, { multiSig: this }],
Expand Down Expand Up @@ -384,5 +385,5 @@ export class MultiSig extends Account {
*
* @deprecated this method is only available in v6 as in v7 the MultiSig is automatically attached to the creator's identity
*/
public joinCreator: OptionalArgsProcedureMethod<JoinCreatorParams, void> | (() => never);
public joinCreator: OptionalArgsProcedureMethod<JoinCreatorParams, void>;
}

0 comments on commit 1870004

Please sign in to comment.