From 4a409be424066fa5a3190972bb68e5b15b88168e Mon Sep 17 00:00:00 2001 From: guibescos <59208140+guibescos@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:22:17 +0100 Subject: [PATCH] do it (#2249) --- .../xc_admin_common/src/deterministic_oracle_accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/governance/xc_admin/packages/xc_admin_common/src/deterministic_oracle_accounts.ts b/governance/xc_admin/packages/xc_admin_common/src/deterministic_oracle_accounts.ts index bfdfef8d7f..cae7a61f12 100644 --- a/governance/xc_admin/packages/xc_admin_common/src/deterministic_oracle_accounts.ts +++ b/governance/xc_admin/packages/xc_admin_common/src/deterministic_oracle_accounts.ts @@ -67,7 +67,7 @@ export async function findDetermisticAccountAddress( const seed: string = getSeed(type, symbol); const address: PublicKey = await PublicKey.createWithSeed( PRICE_FEED_OPS_KEY, - seed, + seed.slice(32), getPythProgramKeyForCluster(cluster) ); return [address, seed];