We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0437443 commit 822a7d5Copy full SHA for 822a7d5
scripts/bulk-create-proposal.ts
@@ -114,7 +114,7 @@ export async function run(args: any = process.argv) {
114
const freeTasks = nextAvailableTaskIds(
115
queue.taskBitmap,
116
proposals.length - organization.numProposals
117
- )[0];
+ );
118
let freeTaskIdx = 0;
119
const proposalConfig = argv.proposalConfig
120
? new PublicKey(argv.proposalConfig)
@@ -126,6 +126,7 @@ export async function run(args: any = process.argv) {
126
let i = 0;
127
for (const proposalData of proposals) {
128
if (i >= organization.numProposals) {
129
+ console.log(`Creating proposal ${i}`);
130
const {
131
instruction,
132
pubkeys: { proposal },
0 commit comments