Skip to content

Commit

Permalink
fix(public input struct): remove unused args
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyjfpender committed Aug 21, 2023
1 parent c302fe5 commit 37aa25b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/provable-programs/src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export class PublicInputIssuerArgs extends Struct({
issuerPubKey: PublicKey,
provingRule: Rule
}) {
constructor(issuerPubKey: PublicKey, subjectPubKey: PublicKey, provingRule: Rule) {
super({ issuerPubKey, subjectPubKey, provingRule });
constructor(issuerPubKey: PublicKey, provingRule: Rule) {
super({ issuerPubKey, provingRule });
}
}

Expand Down

0 comments on commit 37aa25b

Please sign in to comment.