Skip to content

Commit

Permalink
fix(proposal-crreation): pass through prerequisit signers (solana-lab…
Browse files Browse the repository at this point in the history
  • Loading branch information
nikarm22 authored Sep 9, 2022
1 parent 8c88f8c commit 890974e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ const CreateStream = ({
governance: form.tokenAccount.governance,
prerequisiteInstructions: prerequisiteInstructions,
shouldSplitIntoSeparateTxs: true,
prerequisiteInstructionsSigners: signers,
signers,
}
}
Expand Down
2 changes: 2 additions & 0 deletions pages/dao/[symbol]/proposal/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ const New = () => {
prerequisiteInstructions: x.prerequisiteInstructions || [],
chunkSplitByDefault: x.chunkSplitByDefault || false,
signers: x.signers,
prerequisiteInstructionsSigners:
x.prerequisiteInstructionsSigners || [],
shouldSplitIntoSeparateTxs: x.shouldSplitIntoSeparateTxs,
}
}),
Expand Down

0 comments on commit 890974e

Please sign in to comment.