Skip to content

Commit

Permalink
fix: add missing preparestorage when creating procedures
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorVicente committed Jan 13, 2021
1 parent b28337f commit cb33c85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/api/procedures/modifyInstructionAffirmation.ts
Expand Up @@ -196,5 +196,6 @@ export async function prepareStorage(
*/
export const modifyInstructionAffirmation = new Procedure(
prepareModifyInstructionAffirmation,
getAuthorization
getAuthorization,
prepareStorage
);
6 changes: 5 additions & 1 deletion src/api/procedures/setTokenDocuments.ts
Expand Up @@ -158,4 +158,8 @@ export async function prepareStorage(
/**
* @hidden
*/
export const setTokenDocuments = new Procedure(prepareSetTokenDocuments, getAuthorization);
export const setTokenDocuments = new Procedure(
prepareSetTokenDocuments,
getAuthorization,
prepareStorage
);

0 comments on commit cb33c85

Please sign in to comment.