Skip to content

Commit 463eaf4

Browse files
committed
chore: fix constant usage
1 parent 95e26d9 commit 463eaf4

File tree

3 files changed

+4
-20
lines changed

3 files changed

+4
-20
lines changed

governance/xc_admin/packages/xc_admin_common/src/multisig_transaction/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class MultisigParser {
166166
return SolanaStakingMultisigInstruction.fromTransactionInstruction(
167167
instruction,
168168
);
169-
} else if (instruction.programId.equals(SOLANA_LAZER_PROGRAM_ID)) {
169+
} else if (instruction.programId.equals(new PublicKey(SOLANA_LAZER_PROGRAM_ID))) {
170170
return LazerMultisigInstruction.fromInstruction(instruction);
171171
} else {
172172
return UnrecognizedProgram.fromTransactionInstruction(instruction);

lazer/contracts/solana/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@coral-xyz/anchor": "^0.30.1",
14-
"@pythnetwork/pyth-lazer-sdk": "^0.3.1",
14+
"@pythnetwork/pyth-lazer-sdk": "workspace:*",
1515
"@solana/web3.js": "^1.98.0",
1616
"@solana/buffer-layout": "^4.0.1"
1717
},

pnpm-lock.yaml

Lines changed: 2 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)