Skip to content

Commit

Permalink
fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
varsha766 committed Oct 22, 2024
1 parent e9e6282 commit 42c9500
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tx-send-module/tx-send-module.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,10 @@ export class TxSendModuleService {
case 'BabyJubJubKey2021': {
signatureType = 'BJJSignature2021';
proofPurpose = 'assertionMethod';
break;
}
default: {
throw Error('Type is not matched');
throw Error(`${vm.type} type is not matched`);
}
}

Expand Down

0 comments on commit 42c9500

Please sign in to comment.