From f012e667762fd37544679d84f5aeee7a95dc1027 Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt <3esmit@gmail.com> Date: Thu, 14 May 2026 02:33:10 -0300 Subject: [PATCH] fix(oracle): align price account decode error --- oracle/core/src/account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oracle/core/src/account.rs b/oracle/core/src/account.rs index 8b4e0e5..da7c06f 100644 --- a/oracle/core/src/account.rs +++ b/oracle/core/src/account.rs @@ -27,7 +27,7 @@ pub struct OraclePriceAccount { } impl TryFrom<&Data> for OraclePriceAccount { - type Error = borsh::io::Error; + type Error = std::io::Error; fn try_from(data: &Data) -> Result { Self::try_from_slice(data.as_ref())