Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Dec 13, 2024
1 parent 6c54641 commit bfdf093
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions governance/xc_admin/packages/xc_admin_cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,15 +529,16 @@ multisigCommand(
);
}

const proposalAddress = await vault.proposeInstructions(
const proposalAddresses = await vault.proposeInstructions(
instructions,
cluster,
DEFAULT_PRIORITY_FEE_CONFIG
);

// This should be a single proposal normally
console.log(
"Successfully proposed at: https://proposals.pyth.network/?tab=proposals&proposal=" +
proposalAddress[0].toBase58()
proposalAddresses[0].toBase58()
);
});

Expand Down

0 comments on commit bfdf093

Please sign in to comment.