Skip to content

Commit

Permalink
Fix using idl buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Apr 20, 2023
1 parent 954df4a commit b13af39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92143,7 +92143,7 @@ async function run() {
await (0, createIdlUpgrade_1.createIdlUpgrade)({
multisig: (0, utils_1.publicKeyFrom)(programMultisig, 'programMultisig'),
programId: (0, utils_1.publicKeyFrom)(programId, 'programId'),
buffer: (0, utils_1.publicKeyFrom)(buffer, 'buffer'),
buffer: (0, utils_1.publicKeyFrom)(buffer, 'idl-buffer'),
authority: (0, utils_1.publicKeyFrom)(authority, 'authority'),
wallet: (0, utils_1.keypairFrom)(keypair, 'keypair'),
networkUrl: networkUrl,
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function run(): Promise<void> {
await createIdlUpgrade({
multisig: publicKeyFrom(programMultisig, 'programMultisig'),
programId: publicKeyFrom(programId, 'programId'),
buffer: publicKeyFrom(buffer, 'buffer'),
buffer: publicKeyFrom(buffer, 'idl-buffer'),
authority: publicKeyFrom(authority, 'authority'),
wallet: keypairFrom(keypair, 'keypair'),
networkUrl: networkUrl,
Expand Down

0 comments on commit b13af39

Please sign in to comment.