From ed6e20e11cb715dd4a0a4aff695445dc51db1938 Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Wed, 19 Aug 2026 09:42:54 +0000 Subject: [PATCH] refactor(stablecoin): simplify RedemptionPriceState PDA domain --- programs/stablecoin/core/src/redemption_price_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/stablecoin/core/src/redemption_price_state.rs b/programs/stablecoin/core/src/redemption_price_state.rs index 3efd2d3..5b8cdca 100644 --- a/programs/stablecoin/core/src/redemption_price_state.rs +++ b/programs/stablecoin/core/src/redemption_price_state.rs @@ -12,7 +12,7 @@ use nssa_core::{ use serde::{Deserialize, Serialize}; use spel_framework_macros::account_type; -const REDEMPTION_PRICE_STATE_PDA_DOMAIN: &[u8; 32] = b"STABLECOIN__REDEMPTION_PRICE____"; +const REDEMPTION_PRICE_STATE_PDA_DOMAIN: &[u8] = b"REDEMPTION_PRICE_STATE"; /// Redemption-price anchor + PI controller state, lazy form. ///