From ff92efcfd2e978ea28cad73110fa1d2fc17450e5 Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Date: Mon, 13 Jan 2025 16:06:23 +0000 Subject: [PATCH] do it --- .../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];